function winOpen(url, width, height, title)
    {
    windowprops = "left="+(screen.width-width)/2+',top='+(screen.height-height)/2+", scrollbars=no, resizable=yes, width="+width+",height="+height;
    text = "<head><title>"+ title +"</title></head><body topmargin='0' leftmargin='0'";
    text += "><center><img src='" + url + "' width=100%>";
    text += "</center></body>";
    preview = window.open("", "preview", windowprops);
    preview.document.open();
    preview.document.write(text);
    preview.document.close();
}