﻿function send_email()
{
var bodytext = "Subject : " +  document.getElementById("subject").value + "%0d";
bodytext = bodytext + "Name : " +  document.getElementById("Name").value + "%0d";
bodytext = bodytext + "Job Title : " +  document.getElementById("jobtitle").value + "%0d";
bodytext = bodytext + "Organization : " +  document.getElementById("Organization").value + "%0d";
bodytext = bodytext + "Contact E-mail : " +  document.getElementById("Contactmail").value + "%0d";
bodytext = bodytext + "Telephone Number : " +  document.getElementById("Telephonenumber").value + "%0d";
bodytext = bodytext + "Mobile Number : " +  document.getElementById("Mobilenumber").value + "%0d";
bodytext = bodytext + "City : " +  document.getElementById("City").value + "%0d";
bodytext = bodytext + "State/Province : " +  document.getElementById("State/Province").value + "%0d";
bodytext = bodytext + "Zip/Postal Code : " +  document.getElementById("Zip/Postalcode").value + "%0d";
bodytext = bodytext + "Country : " +  document.getElementById("Country").value + "%0d";
var demo;
if (document.getElementById("yes").checked)
{
  demo = "Yes";
}
else if (document.getElementById("no").checked) 
{
  demo = "No";
}
bodytext = bodytext + "Demo : " +  demo + "%0d";
bodytext = bodytext + "Content : " +  document.getElementById("Content").value + "%0d";
bodytext = bodytext + "Performance Management Software : " +  document.getElementById("performancemanagementsoftware").value; + "%0d";
window.location = "mailto:ahmad@patterns-design.com?body=" + bodytext;  
}

function hide_text()
{
 document.getElementById("div_wrong").style.display = "none";
}

 function open_video()
   {
     window.open('cubes_pres.htm', 'CustomPopUp','toolbar=no, status=no, titlebar=no, scrollbars=no,width=800, height=600, menubar=no, resizable=no,left=250px,top=70px');
   }


