function PopupImage1(location, width, height)
{
        winOptions = "location=no,toolbar=no,menubar=no,resizeable=yes,scrollbars=yes,height=" + height + ",width=" + width
        if (navigator.appName == "Netscape") winOptions += ",screenX=10,screenY=10"
        else winOptions += ",left=10,top=10"
               
        window.open(location, "pop", winOptions);
}
