function dispHeader(title,heading){
	var html = '<center><table><tbody><tr><td>';
	html += '<a href="index.html">';
	html += '<img alt="Courtesy Pest Control" src="logo.jpg" style="border: 0px solid; width: 200px; height: 107px;"><br>';
	html += '</a></td><td>';
	html += '<img style="width: 10px; height: 10px;" alt="" src="images/shim.gif">' ;	
	html += '<br></td><td>';
	html += '<span class="header">'+title+'</span><br><br>';
	html += 'Phone: (623) 979-7000 <br>';
	html += 'Servicing the West Valley (Phoenix, AZ) area';
	html += '</td></tr></tbody></table>';
	html += '<hr width="75%">';
	if(heading){
		html += '<span class="heading">'+heading+'</span>';
		html += '<hr width="75%">';
	}//if
	html += '</center>';
	html += '';

	document.write(html);
}

var txt = " slideshow help";
var s = new Array("Hide", "Show");
var opt = new Boolean(false);
function showIt(){
	var d = document.getElementById("instruct");
	var t = document.getElementById('instructText');
	var ds = d.getAttribute("style").toString();
	var ts = t.innerHTML;
	if(!d){return false;}
//alert("ds: "+ds+"\nts: "+ts+"\nopt: "+opt)
	if(opt == true){
		//d.setAttribute("style","display: block;");
		d.style.display = "block";
		t.innerHTML = s[0] + txt;
		opt = false
	}else{
		//d.setAttribute("style","display: none;");
		d.style.display = "none";
		t.innerHTML = s[1] + txt;
		opt = true;
	}
}



	





  
    
      

      
      
      
      
      
      




      
    
  

