function MM_openBrWindow(theURL,winName,features) { //v2.0
 
  window.open(theURL,winName,features);
  return false;
}

function PH_openBrWindow(theURL,winName,features,title,caption,source) { //v2.0
 
  newwindow2=window.open(theURL,winName,features);
  //theURL,winName,features,title,caption,source
  var tmp = newwindow2.document;
	tmp.write('<html><head><title>'+title+'</title>');
	tmp.write('</head>');
	tmp.write('<body>');
	tmp.write('<img src="'+theURL+'"');
	tmp.write('<BR>');
	if(caption != '')
	{
		
		tmp.write('<font face="Verdana" size="2" ><center><B>'+caption+'</B></center></font>');
		
	}
	if(source != '')
	{
	
		tmp.write('<font face="Verdana" size="2" ><center><B>Source: '+source+'</B></center></font>');
	}
	tmp.write('<BR>');
	tmp.write('</body>');
	
  return false;
}