<!--
var popup;
function openWin(page,name,attributes){
	popup = window.open(page,name,attributes);	
}

function centerWindow(wid,hei){
	scrWidth = screen.width;
	scrHeight = screen.height;
	xMiddle = scrWidth / 2;
	yMiddle = scrHeight / 2;
	winWidth = wid;
	winHeight = hei;
	leftPos = xMiddle - (winWidth / 2);
	topPos = yMiddle - (winHeight / 2);
	popup = moveTo(leftPos,topPos);
}
//-->