function productscreen() {
                window.open("","product","left=300,top=25,width=400,height=350,resizable=no,toolbar=no,location=no,directories=no,scrollbars=no")
                } 
function testscreen() {
                window.open("","test","left=300,top=25,width=440,height=370,resizable=no,toolbar=no,location=no,directories=no,scrollbars=no")
                }
function checkData (){
  
           if (document.forms[0].fromemail.value.length ==0){
         alert("Please enter valid email addresses.")
         return false}
        if (document.forms[0].fromemail.value.length >0){
         i=document.forms[0].fromemail.value.indexOf("@")
         j=document.forms[0].fromemail.value.indexOf(".",i)
         k=document.forms[0].fromemail.value.indexOf(",")
         kk=document.forms[0].fromemail.value.indexOf(" ")
         jj=document.forms[0].fromemail.value.lastIndexOf(".")+1
         len=document.forms[0].fromemail.value.length

        if ((i>0) && (j>(1+1)) && (k==-1) && (kk==-1) &&
        (len-jj >=2) && (len-jj<=3)) {
           }
         else {
           alert("Please enter valid email addresses.\n" +
           document.forms[0].fromemail.value + " is invalid.")
           return false}}
}
