if (navigator.appName=="Microsoft Internet Explorer") {
	document.write("<link rel='STYLESHEET' type='text/css' href='../_css/ie.css'>")
} else {
	document.write("<link rel='STYLESHEET' type='text/css' href='../_css/ns.css'>");
}

function openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}



function openPopUp(theURL) 
{
	var PopUpWindow;
	var ToolStr;
	//var ResizeOpt = document.all ? "" : ",resizable=yes";
	if((PopUpWindow==null) || (PopUpWindow.closed))
		{		
			ToolStr = "width=466,height=466,top=0,left=50,scrollbars=yes";
			PopUpWindow=window.open(theURL,"PopUpWindow",ToolStr);
		}
	else
		{
		PopUpWindow.location.href = theURL;
		}
		
}
