var ShipDelayNoticeWindowOnHide = function(){
	// Destroy the window
	ColdFusion.Window.destroy('ShipDelayNoticeWindow', true);
}

var ShipDelayNotice = function(){
	ColdFusion.Window.create('ShipDelayNoticeWindow', 'Notice', 
		'notice.cfm',
		{x:100,y:100,height:200,width:400,modal:true,closable:true,
		draggable:true,resizable:true,center:true,initshow:true,
		refreshonshow:true,bodystyle:'color:#000000; background-color:#ffffff; padding: 5px;'});
	document.getElementById('ShipDelayNoticeWindow_title').className = 'cfWindowTitleBar';
	ColdFusion.Window.onHide('ShipDelayNoticeWindow', ShipDelayNoticeWindowOnHide);
}

