	function init()
	{
		 show(0);
	}
//
	function show(def)
{
	if(def==0)
	{
	switchVisible('mainbody',1);
	switchVisible('headr',1);
	switchVisible('webdesign',0); 
	switchVisible('officedesign',0);
	switchVisible('photorestore',0);
	switchVisible('buttonpr5',0);
	switchVisible('photos',0);
	switchVisible('footer',1);
	switchVisible('whole_footer_Home',1);
	switchVisible('whole_footer_Photo',0);
	switchVisible('whole_footer_Office',0);
	switchVisible('whole_footer_Resto',0);
	switchVisible('whole_footer_web',0);
	switchVisible('navHeader',1); 
	switchVisible('navHeaderWeb',0); 
	switchVisible('navHeaderPhoto',0); 
	switchVisible('navHeaderRestore',0); 
	//switchVisible('ad1',1); 
	//switchVisible('ad2',1); 
	//switchVisible('ad3',1); 
	//switchVisible('ad4',1); 
	//switchVisible('ad5',1); 
	switchVisible('ad6',1);
	}
	if(def==1)
	{
	switchVisible('mainbody',0);
	switchVisible('webdesign',1); 
	switchVisible('officedesign',0);
	switchVisible('photorestore',0);
	switchVisible('buttonpr5',0);
	switchVisible('photos',0);
	switchVisible('footer',0);
	switchVisible('whole_footer_Home',0);
	switchVisible('whole_footer_Photo',0);
	switchVisible('whole_footer_Office',0);
	switchVisible('whole_footer_Resto',0);
	switchVisible('whole_footer_web',1);
	switchVisible('navHeader',0); 
	switchVisible('navHeaderWeb',1); 
	switchVisible('navHeaderPhoto',0); 
	switchVisible('navHeaderRestore',0); 
	//switchVisible('ad1',0); 
	//switchVisible('ad2',0); 
	//switchVisible('ad3',0); 
	//switchVisible('ad4',0); 
	//switchVisible('ad5',0); 
	switchVisible('ad6',0);
	}
	if(def==2)
	{
	switchVisible('mainbody',0);
	switchVisible('webdesign',0); 
	switchVisible('officedesign',1);
	switchVisible('photorestore',0);
	switchVisible('buttonpr5',0);
	switchVisible('photos',0);
	switchVisible('footer',0);
	switchVisible('whole_footer_Home',0);
	switchVisible('whole_footer_Photo',0);
	switchVisible('whole_footer_Office',1);
	switchVisible('whole_footer_Resto',0);
	switchVisible('whole_footer_web',0); 
	//switchVisible('ad1',0); 
	//switchVisible('ad2',0); 
	//switchVisible('ad3',0); 
	//switchVisible('ad4',0); 
	//switchVisible('ad5',0); 
	switchVisible('ad6',0);
	}
	if(def==3)
	{
	switchVisible('mainbody',0);
	switchVisible('webdesign',0); 
	switchVisible('officedesign',0);
	switchVisible('photorestore',1);
	switchVisible('buttonpr5',1);
	switchVisible('photos',0);
	switchVisible('footer',0);
	switchVisible('whole_footer_Home',0);
	switchVisible('whole_footer_Photo',0);
	switchVisible('whole_footer_Office',0);
	switchVisible('whole_footer_Resto',1);
	switchVisible('whole_footer_web',0);
	switchVisible('navHeader',0); 
	switchVisible('navHeaderWeb',0); 
	switchVisible('navHeaderPhoto',0); 
	switchVisible('navHeaderRestore',1); 
	//switchVisible('ad1',0); 
	//switchVisible('ad2',0); 
	//switchVisible('ad3',0); 
	//switchVisible('ad4',0); 
	//switchVisible('ad5',0); 
	switchVisible('ad6',0);
	}
	if(def==4)
	{
	switchVisible('mainbody',0);
	switchVisible('webdesign',0); 
	switchVisible('officedesign',0);
	switchVisible('photorestore',0);
	switchVisible('buttonpr5',0);
	switchVisible('photos',1);
	switchVisible('footer',0);
	switchVisible('whole_footer_Home',0);
	switchVisible('whole_footer_Photo',1);
	switchVisible('whole_footer_Office',0);
	switchVisible('whole_footer_Resto',0);
	switchVisible('whole_footer_web',0);
	switchVisible('navHeader',0); 
	switchVisible('navHeaderWeb',0); 
	switchVisible('navHeaderPhoto',1); 
	switchVisible('navHeaderRestore',0); 
	//switchVisible('ad1',0); 
	//switchVisible('ad2',0); 
	//switchVisible('ad3',0); 
	//switchVisible('ad4',0); 
	//switchVisible('ad5',0); 
	switchVisible('ad6',0);
	}
}
//
function change_message(message_text,xpos,ypos)
{
 var theElement = document.getElementById("message1");
 theElement.innerHTML = message_text;
 theElement.style.top = xpos + "px";
 theElement.style.left = ypos + "px";
}
//
function myDate() 
{
    var now   = new Date();
    var weekday = new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
    var day   = weekday[now.getDay()];
    var month  = now.getMonth() + 1;
    var date  = now.getDate();
    var year  = now.getFullYear();
    year = year.toString();
    var today  = day + ' ' + month + '/' + date + '/' + year.substring(2,4);
    return today;
}
//
function switchVisible(id,viz) 
{
	var ie4up = (document.all)? true : false;
 	var ns4   = (document.layers)? true : false;
	var ns6up = (document.getElementById)? true : false;
   if (ns4 && getLayer(id))
   	{
       	getLayer(id).visibility = (viz) ? 'show' : 'hide';
    }
    if ((ie4up || ns6up) && getLayer(id))
   	{
       		 if(viz==0)
       		 {
       		 	document.getElementById(id).style.visibility="hidden";
 //      		 	getLayer(id).style.visibility = "hidden";
       		 }
       	else if(viz==1)
       		{
       		document.getElementById(id).style.visibility="visible";
//       	getLayer(id).style.visibility = "visible";
       		}
     }
//	  	alert("id= " + id + "   viz= " + viz + "  Browsers = " + ie4up + " " + ns4 + " "  + ns6up + "  getLayer(id)= " + getLayer(id));
}
//
function mousehelp(id,msg)
{
			if(msg==1)switchVisible('help_message1',id);
	else if(msg==2)switchVisible('help_message2',id);
	else if(msg==3)switchVisible('help_message3',id);
	else if(msg==4)switchVisible('help_message4',id);
	else if(msg==5)switchVisible('help_message5',id);
	else if(msg==6)switchVisible('help_message6',id);
	else if(msg==7)switchVisible('help_message7',id);
}
//
function getLayer(id) 
{	
//	var x = eval('document.getElementById("'+id+'")')
//	alert("getlayer= " + id + "  " + x);
	var ie4up = (document.all)? true : false;
 	var ns4   = (document.layers)? true : false;
	var ns6up = (document.getElementById)? true : false;
    if (ns4) return eval('document.layers["'+id+'"]');
    if (ie4up) return eval('document.all["'+id+'"]');
    if (ns6up) return eval('document.getElementById("'+id+'")');
    return null;
}
//
	function Me()
	{
		var popurl="aboutpaul.htm";
		winpops=window.open(popurl,"","width=830px,height=500px,scrollbars,");
	}
//
	function Privacy()
	{
		var popurl="PrivacyPolicy.htm";
		winpops=window.open(popurl,"","width=830px,height=500px,scrollbars,");
	}
//
	function Rates()
	{
		var popurl="rates.htm";
		winpops=window.open(popurl,"","width=830px,height=500px,scrollbars,");
	}
//
	function soho()
	{
		var popurl="soho.htm";
		winpops=window.open(popurl,"","width=830px,height=500px,scrollbars,");
	}
//
	function legal()
	{
		var popurl="legal.htm";
		winpops=window.open(popurl,"","width=830px,height=800px,scrollbars,");
	}
//
	function auburn_pic()
	{
		var popurl1="main_pic.htm";
		winpops=window.open(popurl1,"","width=930px,height=650px,scrollbars,");
	}
//	
	function fair_pic()
	{
		var popurl2="fair_pic.html";
		winpops=window.open(popurl2,"","width=600px,height=650px,scrollbars,");
	}
//
	function pond_pic()
	{
		var popurl3="pond_pic.html";
		winpops=window.open(popurl3,"","width=600px,height=650px,scrollbars,");
	}
