function getFocus() {
//	setTimeout("window.focus()",200); 
}
function init() {
//	getFocus(); 
}
function unInit() {
//	window.opener.top.getFocus();
} // end function

function popGloss(pg) { // ldg
	var winWidth=230; var winHeight=205;
	var winLeft=0; var winTop=0;
	//
	if(parseInt(navigator.appVersion)>=4) {
		winLeft = (screen.width-winWidth)/2; 
		winTop = (screen.height-winHeight)/2-(.15*winHeight); 
	}
//	var loc = pg+'.asp';
	var loc = pg;
	popWin=window.open(loc, "PopWin", "toolbar=no,width="+winWidth+",height="+winHeight+",directories=no,status=no,scrollbars=no,resizable=no,menubar=no,top="+winTop+",left="+winLeft);
	popWin.focus();
} // end function
