<!--
function popUpN(strUrl){
	strOptions='height=400,width=730,scrollbars';
	var winX=(screen.width-730)/2;
	var winY=(screen.height-400)/2;
	strOptions+=',left='+winX+',top='+winY;
	strName=escape(strUrl.substring(strUrl.lastIndexOf('/')-2,strUrl.lastIndexOf('/')));
	fireWin(strUrl,strName,strOptions);
}
function popUpGen(strUrl,iW,iH){
	strOptions='height='+iH+',width='+iW+',scrollbars';
	var winX=(screen.width-iW)/2;
	var winY=(screen.height-iH)/2;
	strOptions+=',left='+winX+',top='+winY;
	strName=escape(strUrl.substring(strUrl.lastIndexOf('/')-2,strUrl.lastIndexOf('/')));
	fireWin(strUrl,strName,strOptions);
}
function fireWin(strUrl,strName,strParams){ //fire
	 newWin=window.open(strUrl,strName,strParams); 
	 newWin.focus();
}
function printWin(strUrl){
	strOptions='height=400,width=730,scrollbars';
	var winX=(screen.width-730)/2;
	var winY=(screen.height-400)/2;
	strOptions+=',left='+winX+',top='+winY;
	strName='printWin';
	fireWin(strUrl,strName,strOptions);
}
function popUpF(strUrl){
	strOptions='height=400,width=730,scrollbars,menubar,status,resizable';
	var winX=(screen.width-730)/2;
	var winY=(screen.height-400)/2;
	strOptions+=',left='+winX+',top='+winY;
	strName=escape(strUrl.substring(strUrl.lastIndexOf('/')-2,strUrl.lastIndexOf('/')));
	fireWin(strUrl,strName,strOptions);
}

function parentNav(strUrl){if(window.opener!=null)window.opener.location=strUrl;}
// -->

