function LoadPopUpFromHref(strLocation, strW, strH)
{
	xWin=window.open(strLocation,'pop','width=' + strW + ',height=' + strH + ',scrollbars=yes');
	xWin.moveTo(0,0);
	xWin.focus();
}

