function showorhidex(stait,leaher)
{

	if (stait)//is one
	{
		visi="visible";
	}
	else
	{
		visi="hidden";
	}



	if(document.all)
	{
		eval("document.all." + leaher + "Coffer.style.visibility=visi;"); 
		eval("document.all." + leaher + "Cover.style.visibility=visi;"); 
		eval("document.all." + leaher + ".style.visibility=visi;"); 
	}
	else if (document.getElementById)
	{
		document.getElementById(leaher+"Coffer").style.visibility=visi;
		document.getElementById(leaher+"Cover").style.visibility=visi;
		document.getElementById(leaher).style.visibility=visi;			
	}


}



function hideAll()
{
	showorhidex(0,'who');
	showorhidex(0,'what');
	showorhidex(0,'how');
	showorhidex(0,'info');
	showorhidex(0,'contact');
}






function hideMaps()
{
	
	
	hideMap('BaltimoreMD');
	hideMap('BrockportNY');
	hideMap('BronxNY');
	hideMap('CalgaryAB');
	hideMap('DenvilleNJ');
	hideMap('EdisonNJ');
	hideMap('EvansvilleIN');
	hideMap('GardnerMA');
	hideMap('GrandRapidsMI');
	hideMap('IndianapolisIN');
	hideMap('IslandiaNY');
	hideMap('PittsburghPA');
	hideMap('ReginaSK');
	hideMap('TorontoON');
	hideMap('WorcesterMA');


}



function hideMap(p)
{
	if(document.all)
	{
		eval("document.all." + p + ".style.visibility='hidden';");  
		eval("document.all." + p + ".style.display='none';"); 
		
	}
	else if (document.getElementById)
	{
		document.getElementById(p).style.visibility='hidden';
		
	}
	
}



function showMap(p)
{
	if(document.all)
	{
		eval("document.all." + p + ".style.visibility='visible';"); 
		eval("document.all." + p + ".style.display='block';"); 
	}
	else if (document.getElementById)
	{
		document.getElementById(p).style.visibility='visible';			
	}
}
