function Start(URL, WIDTH, HEIGHT) {
var winl = (screen.width - WIDTH) / 2;
var wint = (screen.height - HEIGHT) / 2;
windowprops = "left="+winl+",top="+wint+",width=" + (WIDTH+0) + ",height=" + (HEIGHT+0);

text = "<html><head><title>Click to close</title></head><body marginwidth='0' marginheight='0' leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0'><a onclick='window.close()' style='cursor: hand'><img src='" + URL + "' border='0' alt='Click to close'></a></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,status'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

var THIS_SITE="http://hippocampusextensions.com";
function wo(_checked)
{
  where = _checked?"_blank":"_self";
  for (var i=0; i<=(document.links.length-1); i++)
  {
    if(document.links[i].href.indexOf(THIS_SITE)<0)
	  document.links[i].target=where;
  }
}
