function video(filename, titulek, autor, popis, sirka, vyska){
obraz=window.open("about:blank","_blank","toolbar=0,status=0,history=0,"+
"scrollbars=0,resizable=1,width="+sirka+",height="+(vyska+50)+",top=200,left=300");
obraz.document.open("text/html");
obraz.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\/>\n");
obraz.document.write("<html>")
obraz.document.write("\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\" />\n");
obraz.document.write("<meta http-equiv=\"Content-Language\" content=\"cs\" />\n");
obraz.document.write("<title>"+titulek+"</title>\n");
obraz.document.write("<style type=\"text/css\">@import url(css/video.css);</style>");
obraz.document.write("</head>\n<body>\n");
obraz.document.write("<a href=\"javascript:window.close('close')\"></a>\n");
obraz.document.write("<!--<object class=\"video\" classid=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" id=\"MediaPayer\" width=\"412\" height=\"300\">\n");
obraz.document.write("<param name=\"Filename\" value=\""+filename+"\">-->\n");
obraz.document.write("<embed class=\"video\" width=\"470\" height=\"330\" src=\""+filename+"\" autostart=\"1\" showstatusbar=\"1\">\n");
obraz.document.write("<p>")
obraz.document.write("<b>"+titulek+"</b><br />\n"+autor+"<br />\n"+popis);
obraz.document.write("</p>")
obraz.document.write("</body>\n\n");
obraz.document.write("</html>")
obraz.document.close();
}