/*
Routine: Onload event handler for Header window
Language: JavaScript 1.0
Author: Joe Sare
Author Email: joe@AgileDog.com
Copyright: Joe Sare DBA AgileDog 1999, 2007
*/
function ContentLoad() {
  if (self == top) {
     xxnav = '' + location.protocol + '//' + location.host + location.port + '/?index.htm'
     if ('file:' == '' + location.protocol)
	{ alert(xxnav) }
     else
        { location.replace(xxnav) }
  }
  return true;
}
if(document.layers) window.captureEvents(Event.MOUSEDOWN);
function test_click(evn){
 if ((navigator.appName == 'Netscape' &&
    (evn.which == 2 || evn.which == 3)) ||
    (navigator.appName == 'Microsoft Internet Explorer' && 
    (event.button == 2 || event.button == 3)))
       {alert("Right-Click is disabled on AgileDog.COM");return false;}
}
window.onmousedown=test_click;
document.onmousedown=test_click;


