function offshoreSearch(form){ var offshore = form.elements['offshore'].options[form.elements['offshore'].selectedIndex].text; var uk = form.elements['uk'].value; var top = screen.height/6; var left = screen.width/4; if(offshore=="Select" && uk.length==0){ alert('Please choose UK company name or country from the menu.'); return false; }else if(offshore!="Select"){ window.open("/other-namesearch.php?country="+offshore,"offshoreNameSearch","width=500,height=450,location=no,menubar==no,resizable=yes,toobal=no,left="+left+",top="+top); }else{ form.submit(); } }