
function checkemailformat(email)
{
	var error_email=false;
	if (email==""){
	var error_email=true;
	}
	else if(email.indexOf("@")==-1||email.indexOf(".")==-1||email.length<5){
	var error_email=true;
	}

return error_email;
}


function checkandsubmit()
{
	var error=false;
	var message="";
		
	if(checkemailformat(document.form.email.value))
		{
		var error=true;
		var message="Die Eingabe im Feld E-mail ist nicht gültig oder nicht vorhanden";
		
	}
	if (error==true){
	alert(message);
	}
	else{
	document.form.submit();
	}	

}

function popup_fflash()
  {
  	newWin=window.open('http://www.festool.de/images/bilder/klick/index.htm','flash','width=420, height=280, directories= no, location = no, menubar= no, resizable=yes,scrollbars=no,status=no,toolbar=no,screenY=100,screenY=100,top=90,left=250');
  	newWin.focus;
  }