function windowNew( sAdres, iWidth, iHeight, sTitle, iReturn ){
  if ( !sTitle )
    sTitle = '';
  if( !iReturn )
    iReturn = false;

	if( !iWidth )
		var iWidth = 1024;
	
	if( !iHeight )
		var iHeight = 768;

	if( iWidth > 1280 )
		iWidth = 1280;
	else
		iWidth = iWidth + 18;

	if( iHeight > 1024 )
		iHeight = 1024
	else
		iHeight = iHeight + 18;

	var iX = ( screen.availWidth - iWidth ) / 2;
	var iY = ( screen.availHeight - iHeight ) / 2;
  var refOpen = window.open( sAdres , "sTitle" , "height="+iHeight+",width="+iWidth+",top="+iY+",left="+iX+ ",resizable=no, scrollbars=yes, status=true").focus();
   if( iReturn == true )
  	return refOpen;
}

function over(){
msg=0;
mail=/.+@.+\..+/
//var email=document.formular.email.value;
if(document.formular.jmeno.value==""){msg="Zadejte prosím vaše jméno!";}
if(mail.test(document.formular.email.value )==false){msg="Zadejte prosím správně váš E-mail!";}
if(document.formular.zprava.value==""){msg="Před odesláním je potřeba napsat do políčka dotazu nějaký smysluplný text!";}
if(msg!=0){
window.alert(msg);
return false;
}
else{
document.cookie="ip=0";
return true;
}
}