﻿// JScript File
function OpenWindow(url,name,size)
{
    //alert(size);
	//var str="status=0,scrollbars=1,resizable=1,address=0,toolbar=0,menubar=0,location=0,width=" + lngwidth + ",Height=" + lngheight;
	var str="status=0,scrollbars=1,resizable=1,address=0,toolbar=0,menubar=0,location=0," + size;
	window.open(url,"", str);
}

function CloseWindow()
{
	window.close()
}

function OpenImage(url,lngwidth,lngheight)
{
	//alert(url);
	var str="status=0,scrollbars=1,resizable=1,address=0,toolbar=0,menubar=0,location=0,width=" + lngwidth + ",Height=" + lngheight;
	window.open(url, "", str);
}

