function OvalidateEmail(email){var splitted=email.match("^(.+)@(.+)$");if(splitted==null){return false;}if(splitted[1]!=null){var regexp_user=/^\"?[\w-_\.]*\"?$/;if(splitted[1].match(regexp_user)==null){return false;}}if(splitted[2]!=null){var regexp_domain=/^[\w-\.]*\.[A-Za-z]{2,4}$/;if(splitted[2].match(regexp_domain)==null){var regexp_ip=/^\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\]$/;if(splitted[2].match(regexp_ip)==null){return false;}}return true;}return false;}function ovalidate(){if(document.outofstock.emailadd.value.length==0){alert("Please enter your email address");document.outofstock.emailadd.focus();return false;}if(!OvalidateEmail(document.outofstock.emailadd.value)){alert("Please enter your valid email address");document.outofstock.emailadd.focus();return false;}else{document.outofstock.submit();popup();}}function popup(){window.open("http://site.beaniedesigns.com/thankyou.html","","toolbar=0,scrollbars=no,location=0,status=0,menubars=0,resizable=0,width=650,height=280,");}
