function noteProduct(theProduct) {
 if(document.cookie && (document.cookie.indexOf("casaNotes=")>-1)) {  
  products = readCookieContent();
  products += ", " + theProduct;     
 }
 else {
  products = theProduct;
 }
 
 var jetzt = new Date();
 var Auszeit = new Date(jetzt.getTime() + 86400000);
 document.cookie = "casaNotes=" + products + "_END; expires=" + Auszeit.toGMTString() + ";";
 alert("Das Produkt wurde zur Anfrage vorgemerkt. Rufen Sie die Seite \"Kontakt\" auf, um dort die Anfrage abzuschicken.");
}

function setTextareaContent() {
 if(document.cookie && (document.cookie.indexOf("casaNotes=")>-1)) {
  products = readCookieContent();
  if(products) {
   document.getElementById("theTextarea").value = ""+products+"";
  }
 }
}

function readCookieContent() {
 var Wertstart = document.cookie.indexOf("casaNotes=") + 10;
 var Wertende = document.cookie.indexOf('_END'); 
 if (Wertende == -1) {
  Wertende = document.cookie.length;
 }
 content = document.cookie.substring(Wertstart, Wertende);
  
 return(content);
}

function killCookie() {
 document.cookie = "casaNotes=; expires=Thu, 01-Jan-70 00:00:01 GMT;";
}

function resetForm() {
 killCookie(); 
 document.forms[0].reset(); 
 document.getElementById("theTextarea").value = "Anfrage Produkt(e), Ihre Nachricht";
}

function submitForm() {
 killCookie();
 document.forms[0].submit();
}
