function showPicture(sTitle, mTop, mLeft, pWidth, pHeight, pUrl) {
                var paramteres = 'scrollbars="no",resizable=no,history=no,menubar=no,top='+mTop+',left='+mLeft+',width='+pWidth+',height='+pHeight;
                var winImage=("winImage","winImage",paramteres);

                winImage.document.write("<html><head><title>"+sTitle+"</title></head><body marginheight=0 marginwidth=0 topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0><input type=image src='" + pUrl + "' onclick=self.close();></body></html>");
                winImage.document.close();
                winImage.focus();
        }

function windowOpenNoResize(name,width,height,url){
        var width;
        var height;
        var name;
        parametry = 'scrollbars=no, resizable=no, history=no, menubar=no, top=200, left=300,width=' + width + ',height=' + height;
        name=open(url,name,parametry);
        name.focus();
}

function windowOpenScrollNoResize(name, width,height,url){
        var width;
        var height;
        var name;
        parametry = 'scrollbars=auto, resizable=no, location=no, history=no, menubar=no, top=200, left=300,width=' + width + ',height=' + height;
        name=open(url,name,parametry);
        name.focus();
        return name;
}

function windowOpenScrollNoResizeCenterH(name, width,height,url){
        var width;
        var height;
        var name;
        var lf = (window.screen.width / 2) - width/2;
        parametry = 'scrollbars=auto, resizable=no, history=no, menubar=no, top=0px, left='+lf+',width=' + width + ',height=' + height;
        name=open(url,name,parametry);
        name.focus();
}



