// Copyright the Economist Group 2002

function newBrowser(url, width, height)
{
  var newWin = null;
  var wwidth = null;
  var hheight = null;
  var scroll = "yes";

  hheight = height + 75;
  wwidth = width + 60;
  if (hheight > 580) {
    hheight = 580;
  }
  if (wwidth > 780) {
    wwidth = 780;
  }
  yes = 1;
// wid = window.open(url,"mine","toolbar=no,status=no,directories=no,location=no,menubar=no,scrollbars=no,width=500,height=400");

  var options = "width="+wwidth+",height="+hheight+",resizable=yes,scrollbars="+scroll;

  if (newWin == null){
    newWin = window.open("","",options);
  }
  newWin.document.writeln("<HTML><BODY BGCOLOR='#FFFFFF' LINK='#444466' VLINK='#776677' ALINK='#CC0033' LEFTMARGIN='3' TOPMARGIN='7' MARGINWIDTH='3' MARGINHEIGHT='7'><center><img src="+url+"><br><br><font size='-2' face='arial,helvetica,verdana'>To print this illustration, please close this window and then click on &#147;Printable page&#148; at the top of the article.<BR><BR><A HREF='JavaScript: self.close();'>Close window</A></font></center></body></html>");
  newWin.document.close();
}

function map(){
alert ('Double-click this link to view the target document');
window.open("/map.cfm",
"map", "width=500,height=300,location=0,menubar=0,resizable=0,scrollbars=0,status=1,titlebar=0,toolbar=0,hotkeys=0");}

function email(){
window.open("emailafriend.cfm",
"email", "width=500,height=300,location=0,menubar=0,resizable=0,scrollbars=1,status=1,titlebar=0,toolbar=0,hotkeys=0");}

function searchtips(){
  var newWin = null;
  var wwidth = 300;
  var hheight = 300;

  var options = "width="+wwidth+",height="+hheight+",resize=yes,scrollbars="+scroll;

  if (newWin == null){
    newWin = window.open("","",options);
  }

  newWin.document.writeln("<HTML><head><title>Custom Search Folders</title></head>");
  newWin.document.writeln("<BODY BGCOLOR='#FFFFFF' LINK='#000000' VLINK='#333333 ALINK='#CC0033' LEFTMARGIN='3' TOPMARGIN='7' MARGINWIDTH='3' MARGINHEIGHT='7'>");
  newWin.document.writeln("<table cellpadding='5'><tr><td>");
  newWin.document.writeln("<font size='+1' face='arial,helvetica,verdana'><center><b>Custom Search Folders</b><sup>TM</sup></center></font><br>");
  newWin.document.writeln("<font size='-1' face='arial,helvetica,verdana'>Custom Search Folders<sup>TM</sup> are the little blue folders at the right of your results page that guide you to just what you've been searching for. These folders make looking for information easier and faster by dynamically grouping your results into meaningful categories.</font>");
  newWin.document.writeln("</table></tr></td>");
  newWin.document.writeln("<center><br><font size='-2' face='arial,helvetica,verdana'><A HREF='JavaScript: self.close();'>Close window</A></font></center></body></html>");
  newWin.document.close();

}

function displaybackground(story) {
  window.open("/background/displayBackground.cfm?story_id="+story,"background", "width=530,height=350,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,hotkeys=0");
  return false;
}

function displayPopup(file, popupWindowWidth, popupWindowHeight) {
	window.open(file,"popupWindow","width="+popupWindowWidth+",height="+popupWindowHeight+",location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,hotkeys=0,left=100,top=100");
	return false;
}