
function launchSAVE(destination)
{
	window.open('shipping/index.cfm?destination='+destination, 'save', 'width=650,height=490,menubar=no,location=no,scrollbars=yes,resizable=yes'); 
	window.blur(); 
	return false; // prevents the calling window from opening 'shipping/'
}

function launchTutorial()
{
	window.open('shipping/tutorial.cfm', 'tutorial', 'width=640,height=480,menubar=no,location=no,scrollbars=no,resizable=no'); 
	window.blur(); 
	return false; // prevents the calling window from opening 'shipping/'
}