var Worship = {

	GraceNoteDetail : function(GNoteID){
		ColdFusion.Window.create('GNoteWindow', 'Grace Notes&hellip;by Pastor Spencer', 
			'grace_notes_detail.cfm?gnote_id=' + GNoteID,
			{height:500,width:700,modal:true,closable:true,
			draggable:true,resizable:true,center:true,initshow:true,
			refreshonshow:true});
		//document.getElementById(ColdFusion.Window.getWindowObject('GNoteWindow').header.id).className = 'cfwindowheader';
		document.getElementById(ColdFusion.Window.getWindowObject('GNoteWindow').body.id).className = 'cfwindowbody';
	},
	
	CloseGNoteWindow : function(){
		ColdFusion.Window.hide('GNoteWindow');
		ColdFusion.Window.destroy('GNoteWindow', true);
	}

}
