
function loadPage()
{
	//load menus
	domMenu_activate('domMenu_main');	
	domMenu_activate('domMenu_worship');
	//Load for printing
	PrintLoad();
	IndividualPageLoad();
}

function IndividualPageLoad(){ //this method left blank.  "override" w/ another method declared aftwards on pages where onload event is needed
}

<!--JavaScript for Printing-->
function PrintLoad(){
	try{
		if (document.getElementById("Content").name == null){
			//Div 
			document.getElementById("Printing").innerHTML = document.getElementById("Content").innerHTML;
		}
		else{
			//IFRAME
		}
	}catch(err){
	
	}
}
<!--/JavaScript for Printing-->