﻿// JScript File
var newWindow;
var agt=navigator.userAgent.toLowerCase();

function openImage(root, imageURL, prodName, height, width) { 
    var wheight;
    var wwidth;
    
    wwidth = width + 20;
    wheight = height + 65;
    if (newWindow != null && false == newWindow.closed)
    {
        wwidth = width + 30;
        if (agt.indexOf("msie 7.") != -1)
        {
            wheight = height + 147;
        }
        else
        {
            wheight = height + 123;
        }
        newWindow.resizeTo(wwidth, wheight);
        newWindow.focus();
    }
    else
    {
        newWindow = window.open("", "newwin","height="+wheight+",width="+wwidth+",top=100,left=250,resizable=1,scrollbars=0,titlebar=0,status=0");
    }
    newWindow.document.write('<html><head><title>'+ prodName + ' Screenshot</title>');
    newWindow.document.write('</head><body bgcolor="white">');
    newWindow.document.write('<div id="wrapper">');
    newWindow.document.write('<div id="image">');
    newWindow.document.write('<p><span style="padding-left: 10px;"><a href="javascript:self.close()" style="color: #3366CC; font: bold 9pt Arial;"><img src="' + root +'/Images/close_x.gif" border="0">Close<a></span></p>');
    newWindow.document.write('<a href="javascript:self.close()" style="cursor: default;"><img src="'+imageURL+'" border="0" alt="Click to Close" ></a>');
    newWindow.document.write('</div>');
    newWindow.document.write('</div>');
    newWindow.document.write('</body></html>');
    newWindow.document.close();
} 

