<!--
// Hide script
var vers = navigator.appName.charAt(0);
vers += navigator.appVersion.charAt(0);
// should be e.g. vers = "N4" for netscape 4 etc
// We need this because MSIE4 fails to focus a window if you re-create it.

function openDep(url) {
  win = window.open(url, "PollWin", "height=300,width=266,innerHeight=300,innerWidth=266,screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", "home");
  if (vers != "M4") 
  {
	  win.focus();
  }
}

// -->