function KontrolaBazar(frm)
{	
	if (frm.name.value=="") {
		alert("Nezadali jste název inzerátu!");
		frm.name.focus();
		return false;
	}
}

function viewPhoto(imgPath,w,h)  {
	if (typeof(w)=="undefined") w=800;
	if (typeof(h)=="undefined") h=600;
	var wnd = window.open('viewphoto.php?img=' + imgPath, 'okno', 'width='+w+', height-'+h+'toolbar=no, menubar=no, statusbar=no, resizable=yes, scrollbars=yes' );
	wnd.focus();
}
