// Validate the form fields function validateIt(theForm){ if (!checkString(theForm.company, "Company")) return false; else { if (!isAlphabetic(stripWhitespace(theForm.company.value))) { alert("Company must be alphabetic") return false; } if (!checkString(theForm.uname, "User Name")) return false; else if (!isAlphabetic(stripWhitespace(theForm.uname.value))){ alert("User Name must be alphabetic") return false; } } if (!checkString(theForm.prod, "Product")) { return false; } if (!checkEmail(theForm.em)) { return false; } if (!checkString(theForm.fon, "Phone number")) { return false; } if (!checkString(theForm.fax, "Fax number")) { return false; } if (!checkString(theForm.subset, "Subset")) { return false; } if (!checkString(theForm.sta, "Station")) { return false; } if (!checkString(theForm.Hardware, "Hardware")) { return false; } if (!checkString(theForm.OS, "OS")) { return false; } return true; } function myNewWindow(url, winName) { var width="400", height="400"; var left = (screen.width/2) - width/2; var top = (screen.height/2) - height/2; var styleStr = 'scrollbars=1,resizable=1,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top; windowHandle = window.open(url,winName, styleStr); if (!windowHandle.opener) windowhandle.opener = self; return true; }