function preview(form) {
	if (form.name.value==""||form.text.value=="") 
		alert("Musíte vyplnit nadpis i text - nemám co zobrazovat !");
	else {
		prew=window.open("","Nahled","scrollbars=yes,resizeable=yes,toolbar=no,directories=no,status=no,menubar=no,width=550,height=400");
		prew.document.open();
		prew.document.clear();

		prew.document.write("<html>\n");
		prew.document.write("	<head>\n");
		prew.document.write("		<title>Mano.cz - náhled</title>\n");
		prew.document.write("		<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=windows-1250\">\n");
		prew.document.write("	</head>\n");
		prew.document.write("<body bgcolor=\"#FFFFFF\">\n");
		var d;
		d=new Date();
		prew.document.write("<B>" + form.name.value + "</B><P>");
		prew.document.write(form.text.value);
		
	
		prew.document.write("</body>\n");
		prew.document.write("</html>\n");

		prew.document.close();
		if (prew.focus) prew.focus();
	}
}
