// If not in a frame there is something wrong!!
if(parent.frames.length==0){
// Redirect to main page
window.location="http://www.justinmorris.ca";
}

  function hidestatus(){
window.status='Done'
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
document.onload=hidestatus
