<!--

var newWin;
function popUp(rUrl,rName,rHeight,rWidth)
{
	newWin = window.open(rUrl,rName,'height='+rHeight+',width='+rWidth+',left=100,top=100,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	if (window.focus)
	{
		newWin.focus();
	}
}

//-->
