   var displayText = ">>>Do you want to sign up for the "+
					 "\n FREE Lavender Lettter?"+
					 "\n\nYou Get"+
					 "\n\n>>>Special Offers for Subscribers Only"+
					 "\n>>>Lavender News and Articles"+
					 "\n\nSubscribe to 'Lavender Letter'  Now  "+
					 "\nUsing Your Default Mail Address by Clicking OK Below!"+
					 "\n\n+++ We will not Spam you (Newsletters are Published periodically), "+
					 "\nUnsubscribe Anytime and Enjoy Complete Privacy "+
 					 "\n(Your email address is never revealed to third parties)";
			

   var autoresponderEmailAddress = "info@lavendershoppe.com";
   var buttonText = "Subscribe Now!";
   var emailSubject = "subscribe";
 /*
   * ######################################################
   * ######################################################
   * IMPORTANT - DO NOT MODIFY ANYTHING BENEATH THIS LINE!!
   * ######################################################
   */
   var permCookie = "grabber";
   var autoCookie="optin";
   var timedCookie="timed14";
   var isNS6 = (!document.all && document.getElementById) ? true : false;
   function grabEmail(text){
     if(confirm(text)){
	   setPermanentCookie();
	   document.mailer.subscribe.value = "You signed up!";
   	   document.mailer.subscribe.click();
     }
   }
   function showSubscribeButton(){
     document.write("<form name=mailer id=mailer method=post action='mailto:");
     document.write(autoresponderEmailAddress);
     if(emailSubject){
       document.write("?subject=");
       document.write(emailSubject);
     }
	 document.write("' ENCTYPE=\"text/plain\"><input type='submit' value='"+buttonText);
	 document.write("' name=subscribe id=subscribe onclick=\"exit=false;\"></form>");
   }
   function autoCapture(){
     if (getAutoCookie(autoCookie)==""&&getAutoCookie(permCookie)==""){
       setAutoCookie();
	   grabEmail(displayText);
     }
	 /*else if(getAutoCookie(timedCookie)==""&&!isNS6){
	   setTimeout("showTimedPopup();",10000);
	   setTimedCookie();
	 }*/
   }
   function getAutoCookie(cookieName) {
     var id = cookieName + "=";
     var cookievalue = "";
     if (document.cookie.length > 0) {
       offset = document.cookie.indexOf(id);
       if (offset != -1) {
         cookievalue = "x";
       }
     }
     return cookievalue;
   }
   function setAutoCookie () {
	   var today = new Date();
	   var expdate = new Date(today.getTime() + 1 * 24 * 60 * 60 * 1000);
	   document.cookie = autoCookie
	   + "="
	   + escape ("done")+ ";path=/;expires=" + expdate.toGMTString();
   }
   function setPermanentCookie () {
	   var today = new Date();
	   var expdate = new Date(today.getTime() + 3600 * 24 * 60 * 60 * 1000);
	   document.cookie = permCookie
	   + "="
	   + escape ("done")+ ";path=/;expires=" + expdate.toGMTString();
   }
   function setTimedCookie () {
	   var today = new Date();
	   var expdate = new Date(today.getTime() + 5 * 24 * 60 * 60 * 1000);
	   document.cookie = timedCookie
	   + "="
	   + escape ("done")+ ";path=/;expires=" + expdate.toGMTString();
     }
	 function showTimedPopup(){
		var centerWidth=(screen.width/2)-(520/2);
		var centerHeight=(screen.height/2)-(350/2);
		window.open("timedpopup.html", "","height=350,width=520,top="+centerHeight+",left="+centerWidth+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no,directories=no");
	 }