function preview(form) {
	prew=window.open("","Nahled","scrollbars=yes,resizable=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>náhled</title>\n");
	prew.document.write("		<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=windows-1250\">\n");
	prew.document.write("		<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"style.css\">\n");
	prew.document.write("	</head>\n");
	prew.document.write("<body bgcolor=\"#FFFFFF\">\n");

	prew.document.write("<B>" + form.ARTICLE_NAME.value + "</B><P>");
	text_about = form.ARTICLE_ABOUT.value.replace(/\n/gi,"<BR>");
	prew.document.write(text_about + "<P>");
	if(form.MODE.value == 2) 
		text_clanku = form.ARTICLE.value.replace(/\n/gi,"<BR>");
	else 
		text_clanku = form.ARTICLE.value;
	prew.document.write(text_clanku);
	
	prew.document.write("</body>\n");
	prew.document.write("</html>\n");

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