// JavaScript Document

var NS4 = (document.layers)?true:false;
var IE4 = (document.all)?true:false;

function formSubmit(szValue) {
	if (szValue == "0" )
		return false;
	else {
		if(IE4){
			search.submit();
		}
		else{
			document.search.submit();
		}
	}
}

function displayCopyright() {
	if (document.cookie.indexOf("copyrightConfirmed") != 0) {
		if (confirm("By downloading any material from this web site, you agree to the following conditions:\n\rCopyright 1989-2009 Pineapple Grove Designs.\n\rAll rights reserved.\n\rAll materials contained on this site are protected by United States copyright law and may not be reproduced, distributed, transmitted, displayed, published or broadcast without the prior written permission of Pineapple Grove Designs. You may not alter or remove any trademark, copyright or other notice from copies of the content.\n\rHowever, you may download material from Pineapple Grove Designs’ web site for incorporation into contract documents for the sole purpose of specifying that material for inclusion in a building construction project only. If your construction documents allow for installation of items equivalent to Pineapple Grove Designs’ copyrighted materials you must also specify that the equivalent items must not violate Pineapple Grove Designs’ copyright.\n\rAll reproductions of Pineapple Grove Designs’ copyrighted material must be accompanied by the copyright ownership notice:\n\r©1989-2009 Pineapple Grove Designs.\n\rFor further information, call 800-771-4595.")) {
			//store data using name/value format
			document.cookie="copyrightConfirmed";
			return true;
		}
		else
			return false;
	}
}

function mailpage()
{

  var url;
  url = location.href;
  url = url.replace('&', '%26'); 
  url = url.replace('&', '%26'); 
  mail_str = "mailto:?subject=Pineapple Grove Designs Product Information";
  title = document.title;
  title = title.replace('&', ' %26 ');
  title = title.replace('&', ' %26 ');
  mail_str += "&body=I thought you might be interested in this " + title;
  mail_str += ". For more information, visit the Pineapple Grove Designs web site: " + url;
  mail_str += ". If you would like to contact Pineapple Grove Designs directly, the toll free phone number is 800-771-4595.";
  mail_str = mail_str.replace('®', '%ae');
  mail_str = mail_str.replace('&#8482;', '(tm)');
  //alert(mail_str);
  location.href = mail_str; 
}