function popUp(theURL,winName,features) {
window.open(theURL,winName,features);
}
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
var EnableRightClick = 0;
if(isNS)
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
  if(EnableRightClick==1){ return true; }
  else {return false; }
}
function mousehandler(e){
  if(EnableRightClick==1){ return true; }
  var myevent = (isNS) ? e : event;
  var eventbutton = (isNS) ? myevent.which : myevent.button;
  if((eventbutton==2)||(eventbutton==3)) return false;
}
function keyhandler(e) {
  var myevent = (isNS) ? e : window.event;
  if (myevent.keyCode==96)
    EnableRightClick = 1;
  return;
}
document.oncontextmenu = mischandler;
document.onkeypress = keyhandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
document.write ('<div id="logos-home">');
document.write ('<b>group5security.gi</b>');
document.write ('<br><br><br>');
document.write ('<a href="pages/group5.html"><img src="image/group5logo.png" alt="GROUP 5 SECURITY DIVISION"></a><p>');
document.write ('<a href="pages/gibeye.html"><img src="image/gibeye.png" alt="GIBEYE DIVISION, PRIVATE DETECTIVES DEPARTMENT"></a><p>');
document.write ('<a href="pages/creditcentre.html"><img src="image/creditcentre.png" alt="CREDIT CENTRE DIVISION"></a><p>');
document.write ('<a href="pages/fivefire.html"><img src="image/fire.png" alt="5 FIRE SECURITY & ELECTRICAL DIVISION "></a><br><br><br><br><br>');
document.write ('<a href="http://www.jpsmedia.com"><img src="http://www.jpsmedia.com/jps/images/jpsmedia.jpg" alt="JPSMEDIA.COM - BEST CHOICE FOR WEB DESIGN AND SCRIPT SOLUTIONS"></a>');
document.write ('</div>');
