var win = null;
function openCentered(page,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',dependent=yes'
win = window.open(page,myname,settings)
}

function ValidateForm1(theForm){
	theForm.action = 'request.php';

	if(theForm.name.value==""){
		theForm.name.focus();
		return(false);
	}

	if(theForm.surname.value==""){
		theForm.surname.focus();
		return(false);
	}

	if(theForm.street.value==""){
		theForm.street.focus();
		return(false);
	}

	if(theForm.zip.value==""){
		theForm.zip.focus();
		return(false);
	}

	if(theForm.city.value==""){
		theForm.city.focus();
		return(false);
	}

	if(theForm.country.value==""){
		theForm.country.focus();
		return(false);
	}

	if(theForm.tax.value==""){
		theForm.tax.focus();
		return(false);
	}

	if(theForm.job.value==""){
		theForm.job.focus();
		return(false);
	}

	if(theForm.phone.value==""){
		theForm.phone.focus();
		return(false);
	}
}

function ValidateForm2(theForm){
	theForm.action = 'request.php';

	if(theForm.company.value==""){
		theForm.company.focus();
		return(false);
	}

	if(theForm.street.value==""){
		theForm.street.focus();
		return(false);
	}

	if(theForm.zip.value==""){
		theForm.zip.focus();
		return(false);
	}

	if(theForm.city.value==""){
		theForm.city.focus();
		return(false);
	}

	if(theForm.country.value==""){
		theForm.country.focus();
		return(false);
	}

	if(theForm.tax.value==""){
		theForm.tax.focus();
		return(false);
	}

	if(theForm.branche.value==""){
		theForm.branche.focus();
		return(false);
	}

	if(theForm.phone.value==""){
		theForm.phone.focus();
		return(false);
	}
}