

// Suckerfish dropdowns written by  Patrick Griffiths and Dan Webb
// http://alistapart.com/articles/dropdowns/
// http://www.htmldog.com/articles/suckerfish/dropdowns/
<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>



// News Disclaimer PopUp Window
function newsdisclaimer()
{
window.open("/assets/inc/discl_news-popup.htm","newsdisclaimer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=550,height=350,top=100,left=100");
}


//Pop-Up Window Script That Centers ITT 2006 Global Citizenship Report On The Screen Begins Here //
popWindow=null;
function openNewWindow(url,width,height) {
  windowName="fish_neave_popup";
  agent=navigator.appVersion;
  version=parseInt(agent);
  if (version>=4) {
    leftCorner=screen.width/2 - width/2;
    topCorner=screen.height/2 - height/2;
  }else{
    leftCorner=20;
    topCorner=20;
  }
  features=",screenX="+leftCorner+",screenY="+topCorner+",left="+leftCorner+",top="+topCorner;
  features=features+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0";
  if (popWindow==null) {
    popWindow=open(url,windowName, "width="+width+",height="+height+ features);
    if (version<3) 
      setTimeout("popWindow.mama=window",250);
  }else{
    if (version<3) {
      popWindow.close();
      popWindow=null;
      setTimeout("openNewWindow('"+url+"',"+width+","+height+")", 250);
      setTimeout("popWindow.mama=window",500);
    }else if (!popWindow.closed){
      popWindow.close();
      popWindow=null;
      setTimeout("openNewWindow('"+url+"',"+width+","+height+")", 250);
    }else{
      popWindow=null;
      popWindow=open(url,windowName, "width="+width+",height="+height+features);
    }
  }
}
//Pop-Up Window Script That Centers On The Screen Ends Here //