﻿// JScript File
var newWindow = null;

function WinOpen(width,height,image) 
{
    width += 30;
    height += 20;
    
    var size = "width=";
    size += width;
    size += ",height=";
    size += height;
    size += ",scrollbars=yes,resizable=yes";
    if(!newWindow || newWindow.closed)
    {
        newWindow = window.open("","",size);
        //newWindow.resizeTo(width,height);
        // assemble content for new window
        var newContent = "<HTML><HEAD><TITLE>Topmes</TITLE></HEAD>";
        newContent += "<BODY><img src='";
        newContent += image;
        newContent += "'></BODY></HTML>";
        // write HTML to new window document
        newWindow.document.write(newContent);
        newWindow.document.close();
    }
    else
        newWindow.focus();
}

function cursor_hand()
{
    document.body.style.cursor = "pointer";
    document.body.style.cursor = "hand";
}

function cursor_default()
{
    document.body.style.cursor = "default";
}
