function imagezoom(w,h,url) {
/*
    var windowoptions = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
    var popupWindow = window.open(url, 'Imagezoom', windowoptions + ',width=' + w + ',height=' + h);      
    var focus = popupWindow.focus();
*/


    var windowoptions = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
    var popupWindow = window.open('', 'Imagezoom', windowoptions + ',width=' + w + ',height=' + h);      


    popupWindow.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>")
    popupWindow.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='pl' lang='pl'>")
    popupWindow.document.write("<head></head><body>")
    popupWindow.document.write("<center><img src='"+url+"'>")
    popupWindow.document.write("<br/><br/>")
    popupWindow.document.write("<input type='button' value=' Zamknij okno ' onclick='javascript:window.close()'>")
    popupWindow.document.write("</body></html>")

    var focus = popupWindow.focus();



}
