// popup windows & status bar stuff

function popup(mylink, windowname, width, height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width='+width+',height=600,scrollbars=yes');
return false;
}

function setstatus(){
window.status='www.darrenblack.net'
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=setstatus
document.onmouseout=setstatus
document.onmousedown=setstatus