/*
 * Javascript
 *
 */

function win(datei, breite, hoehe, links, oben)
{	
	props = "scrollbars=yes,resizable=yes,status=no,titlebar=no,location=no,menubar=no,width="+breite+", height="+hoehe+"";
	nwin = window.open(datei,"popwin",props);
	nwin.moveTo(links, oben);
}


function checkForm(){
	
	/* fields */
	if( window.document.applydemo.firstname.value       == "" ||
        window.document.applydemo.lastname.value        == "" ||
        window.document.applydemo.jobtitle.value        == "" ||
        window.document.applydemo.company.value         == "" ||
        window.document.applydemo.address1.value        == "" ||
        window.document.applydemo.city.value            == "" ||
        window.document.applydemo.state.value           == "" ||
        window.document.applydemo.zip.value             == "" ||
        window.document.applydemo.country.value         == "" 
     ) {
		alert ("Please fill out all required fields");
		return false;
	}
	
	/* user email */
	if( window.document.applydemo.email.value == "" ) {
		alert ("Please insert email");
		return false;
	}
	
	/* valid email */
	if( window.document.applydemo.email.value.indexOf('.') == -1) {
		alert ("Please insert valid email");
		return false;
	}
		
}