/* v2005-02 */
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
	if (document.layers)
		var xMax = window.outerWidth, yMax = window.outerHeight;
	else
		var xMax = screen.width, yMax = screen.height;
	if(!w||w<0||w>xMax)	w=xMax;
	if(!h||h<0||h>yMax) h=yMax;
	if(myname==null){myname='popup'};
	var LeftPosition = (xMax) ? (xMax-w)/2 : 0;
	var TopPosition = (yMax) ? (yMax-h)/2 : 0;
	var settings = 'height='+h+',width='+w+',top='+TopPosition+',screenX='+TopPosition+',left='+LeftPosition+',screenY='+LeftPosition+',scrollbars='+scroll+',resizable=1,statusbar=1,status=1,toolbar=0,location=0';
	if(win==null||win.closed){win=window.open(mypage, myname, settings);};
	if(win!=null&&!win.closed){win.focus();}
}
function KillWindow(){if(win!=null){win.close();}}
