var win = null;
function newwindow(mypage,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+',toolbar=no,status=no,resizable=yes'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}


function chkformrec()
{


if(document.recommentform.name.value==""||document.recommentform.name.value=="Ihren Namen")
{ document.recommentform.name.value= "Ihren Namen";
  document.recommentform.name.focus();
  document.recommentform.name.select();
  return false;
}


if(document.recommentform.email.value==""||document.recommentform.email.value.indexOf('@')==-1||document.recommentform.email.value=="EMail-Adresse")
{ document.recommentform.email.value= "Email-Adresse";
  document.recommentform.email.focus();
  document.recommentform.email.select();
  return false;
}


if(document.recommentform.rname.value==""||document.recommentform.rname.value=="Name des Empfängers")
{ document.recommentform.rname.value= "Name des Empfängers";
  document.recommentform.rname.focus();
  document.recommentform.rname.select();
  return false;
}


if(document.recommentform.remail.value==""||document.recommentform.remail.value.indexOf('@')==-1||document.recommentform.remail.value=="Email-Adresse")
{ document.recommentform.remail.value= "EMail-Adresse";
  document.recommentform.remail.focus();
  document.recommentform.remail.select();
  return false;
}

document.recommentform.submit();

}
