﻿// JScript File
var popWindow;
function openwindow(URL)
{
	popWindow = window.open(URL,'_blank','height=600,width=600,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
	popWindow.focus;
}
var imageWindow;
function openimagewindow(URL,height,width)
{
	imageWindow = window.open(URL,'imageWindow','height=' + (height+100) + ',width=' + (width+100) + ',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,titlebar=no',true);
	imageWindow.resizeTo(width+60,height+128);
	imageWindow.setActive;
    imageWindow.focus;
}


