// otevri nove okno
function WS(url, jmeno, w, h)
{
   popupWin = window.open("", jmeno, 'resizable=1,top=0,left=0,menubar=0,status=1,width=' + w + ',height=' + h);
   popupWin.document.writeln("<html>\n<head>\n<title>Sprchové panely - SAPHO Hydro &amp; Air</title>\n</head>");
   popupWin.document.writeln("<body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
   popupWin.document.writeln("<img src=\"" + url +"\" width=\"" + w +"\" height=\"" + h +"\">");
   popupWin.document.writeln("</body>");
   popupWin.document.writeln("</html>");
}