<!--
var popwin = null;

function popup(popupURL, popupWidth, popupHeight, popupLeft, popupTop) {
var popupLeft = (screen.width-popupWidth)/2;
var popupTop = (screen.height-popupHeight)/2;
  var args = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resize=no,width='+popupWidth+',height='+popupHeight+',left='+popupLeft+',top='+popupTop;
  if(popwin && !popwin.closed) popwin.close();
  popwin = window.open(popupURL, '', args);
}

function noSpam(user,domain) {
locationstring = "mailto:" + user + "@" + domain;
window.location = locationstring;
}
	
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->