
function OpenWindow(theLink,h,w)
{
	if (typeof SymRealWinOpen != 'undefined') 
	{
		if (document.all)
		{ 
			window.open = SymRealWinOpen;
	        } 
	}

	var PopUpWin1 = window.open( theLink, 'PopUpWin1', 'menubar=yes,toolbar=no,status=yes,width=' + w + ',height=' + h + ',resizable=yes,scrollbars=yes' );
    	if (!PopUpWin1) 
    	{
		alert("A popup blocker was detected. Please allow popups for this site and try again.");
  	} 
  	else 
  	{
    		PopUpWin1.focus();
	}    
}

