var Event = {
	
	DetailWindow : function(EventID){
		ColdFusion.Window.create('EventDetailWindow', 'Event Detail', 
			'event_detail.cfm?eventid=' + EventID,
			{height:500,width:500,modal:true,closable:true,
			draggable:true,resizable:true,center:true,initshow:true,
			refreshonshow:true});
		//document.getElementById(ColdFusion.Window.getWindowObject('StaffWindow').header.id).className = 'cfwindowheader';
		document.getElementById(ColdFusion.Window.getWindowObject('EventDetailWindow').body.id).className = 'cfwindowbody';
	},
	
	CloseEventDetailWindow : function() {
		ColdFusion.Window.hide('EventDetailWindow');
		ColdFusion.Window.destroy('EventDetailWindow', true);
	}
	
}


