
<!--
function windowopen(url,winid,params)
{
	var strMsg="Your browser (or pop-up blocker) appears to have prevented this link from opening a pop-up window. Please add this website to your 'trusted sites' or 'white list' in order to see all features.";
	var oWin=window.open(url,winid,params);
	if (oWin==null || typeof(oWin)=="undefined") 
	{
		alert(strMsg);
	}
	else
	{
		if (oWin.closed)
		{
			alert(strMsg);
		}
		else
		{
			oWin.focus();
		}
	}
}
//-->

