// JavaScript Document - Banner 1

function valContactpopup(){

if(document.getElementById("name").value==""){
	alert("Please insert your Name");
	document.getElementById("name").focus();
	return false;
}
if(document.getElementById("phone").value==""){
	alert("Please insert your Phone");
	document.getElementById("phone").focus();
	return false;
}
if(document.getElementById("mail").value==""){
	alert("Please insert your e-mail");
	document.getElementById("mail").focus();
	return false;
	}
	else{
	if(validarEmail(document.getElementById("mail").value) == "no"){
	alert("Please insert your E-mail the following way name@domain.com");	
	document.getElementById("mail").focus();
	return false;	
	}
}
if(document.getElementById("min").value==""){
	alert("Please select Price Range Min");
	document.getElementById("min").focus();
	return false;
}
if(document.getElementById("max").value==""){
	alert("Please select Price Range Max");
	document.getElementById("max").focus();
	return false;
}
if(document.getElementById("buy_sell").value==""){
	alert("Please select Buy or Sell");
	document.getElementById("buy_sell").focus();
	return false;
}


document.form_popup1.action="http://www.unitedyacht.com/contact_popup/ship-shape-response.php";
document.form_popup1.submit();
}

function validarEmail(valor) {
    if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
    } 
	else {
   return ("no");
  }
 }
 
 
function Abrir_ventana3b(pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=1, width=350, height=530, top=100, Left=500";
window.open(pagina,"",opciones);
}
 
function CloseForm()
{
window.close();	
}
 
