
function MM_openBrWindow(theURL,winName,features) { //v2.0
  var oWin = window.open(theURL,winName,features);
  if (! oWin) {
     var str = "You have popup windows blocked in your browser\n";
	 str += "which is often done to block unwanted advertisement.\n";
	 str += "This site uses these popup windows for ease of navigation\n";
	 str += "and not for advertisement.\n";
	 str += "Therefore please allow popup windows for this site\n";
	 str += "to view the content behind the 'More...' links.\n\n"
	 str += "In the Google toolbar this is done by clicking on the pop-blocker button;\n";
	 str += "and in Firefox you can add this site to the allowed sites under \n";
	 str += "Tools -> Options -> Web Features.\n";
	 str += "For other 'Ad-Blockers' please see it's documentation.\n\n\n";
	 str += "Thank you!";
	 alert (str); 
     }
  else {
	 oWin.focus();
     }
  return false;
}

