// This script is written by Phuc T Le on 09/15/2003 to test for the legal window before 
// downloding a file.

// Check for Browser 

var ie  = (document.all) ? 1 : 0;


function checkWindow() {
     window.alert( window.name);
     if (window.name == "sqhq")
         return true;
     else 
         return false;
}

function disableRightKey() {
       if ((event.button == 2) || (event.button == 3)) {
           window.alert(" Oh ... no ... Don't use this key !!! ");
           return false;
       } else
          return true;
}
