function newwin(file,hei,wid) {
        var newwin;
        var text;
newwin = window.open("","","status=no,resizable=no,toolbar=no,menubar=no,directories=no,location=no,resizable=no,scrollbars=yes" + ",height=" + hei + ",width=" + wid + ",top=200,left=100");
text =  "<html>\n<head>\n</head>\n<body>\n";
text += file;
text += "\n<p><a href=\"#\" onClick=\"window.close('newwin');\">Bezár</a>";
text += "\n</body>\n</html>\n";
newwin.document.write(text);
newwin.document.close();
return true;
}





