﻿// JScript File

function popup(form, name, width, height, scrolls, resize)
{
        var hWindow;
		var iLeft, iTop;
		//iLeft = (screen.width - width)/2;
	    //iTop  = ((screen.height - height)/2)-20;	
	    iLeft = (screen.width - 230)/2;
iTop  = ((screen.height - 120)/2)-20;
							
		hWindow = window.open(form, name, "width="+width+",height="+height+",scrollbars="+scrolls+",resizable="+resize+",screenX="+iLeft+",left="+iLeft+",screenY="+iTop+",top="+iTop);
}