function OpenGallery( galleryType, first_image )
{
   var query_string = "";
   if (first_image != null)
      query_string = "?image=" + first_image;
   var url;
   if (galleryType == "Home")
      url = "/PhotoGallery/HomeGallery.aspx" + query_string;
   else if (galleryType == "Product")
      url = "/PhotoGallery/ProductGallery.aspx" + query_string;
   else if (galleryType == "SmartSide")
      url = "/PhotoGallery/SmartSideGallery.aspx" + query_string;
   else if (galleryType == "Moulding")
      url = "/PhotoGallery/MouldingGallery.aspx" + query_string;
 
   window.open( url , 'Gallery', 'width=550,height=650,resizable=yes,scrollbars=yes,toolbars=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

function LaunchSketchADeck()
{
   window.open("/Sketch-a-deck/sketch.html", '', 'width=800,height=580,resizable=no,scrollbars=no,toolbars=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

function iSwap( id, pic )
{
	eval( "document.images." + id + ".src = '" + pic + "'");
}

 function SiteSearch()
         {
            var textbox = window.document.getElementById('SearchTextBox');
            var listbox = window.document.getElementById('NavBarSearch');
			window.location = "http://www.lpcorp.com/search.aspx?id=10&k=" + textbox.value + "&rel=" + 
				listbox.options[listbox.selectedIndex].value;
         }