function checkvalidform(form){
	if(form.jmeno.value==""){
		alert("Nevyplnili jste jméno.")
		form.jmeno.focus();
		return false;
	}
	else if(form.prijmeni.value==""){
		alert("Nevyplnili jste príjmení.")
		form.prijmeni.focus();
		return false;
	}
	else if(form.telefon.value==""){
		alert("Nevyplnili jste telefon.")
		form.telefon.focus();
		return false;
	}
	else if(form.email.value==""){
		alert("Nevyplnili jste email.")
		form.email.focus();
		return false;
	}
	else if(window.RegExp){
		re=new RegExp("^[^@]+@[^.]+\..+$");
		if(!re.test(form.email.value)){
			alert("Emailova adresa je nespravne vyplnena.")
			form.email.focus();
			return false;
		}
	}
	else{
		return true;
	}
}

function open_new_window(open_picture){
msg=window.open(open_picture, 'nove_okno', 'toolbar=no, menubar=no, location=no, directories=no, dependent=yes, scrollbars=yes, resizable=yes, status=no, width=250, height=300')
//Pozor, definice proměnné msg musí být napsána na jednom řádku!
}

function winopen()
{
  msgWindow=window.open("","Image","menubar=no,scrollbars=no,resizable=yes,dependent=yes,status=no,width=500,height=500");
  msgWindow.document.write("<script type=\"text/javascript\">\n");
  msgWindow.document.write("<!--\n")
  msgWindow.document.write("function sizeImg(image)\n")
  msgWindow.document.write("{\n")
	msgWindow.document.write("  var width;\n")
	msgWindow.document.write("  var height;\n")
	msgWindow.document.write("  screen.height > image.height ? (height = image.height+85) : (height = screen.height-20)\n")
	msgWindow.document.write("  screen.width >  image.width  ? (width =  image.width+50) : (width = screen.width-20)\n")
	msgWindow.document.write("  window.moveTo(10, 10);\n")
	msgWindow.document.write("  window.resizeTo(width,height);\n")
  msgWindow.document.write(" }\n")
  msgWindow.document.write(" //-->\n")
  msgWindow.document.write(" </"+"script>\n")
  msgWindow.document.write      ("<HEAD><TITLE>GE THOMSON 21878 SKYPE DECT COLOR DISPLAY        GE</TITLE></HEAD><center>");
  msgWindow.document.write      ("<FORM NAME='m'><img title='Zavřít náhled' onClick='window.close()' onload='sizeImg(this)' border='0' src='http://www2.patro.cz/img//shop/007/1074582801.jpg'></CENTER>");
  msgWindow.document.write      ("</form>");

}
