// JavaScript Document
var message="Thank you for visiting our site!\n\nFor more information, visit us at:\n\nNOEL L. BANIQUED Architecture and Engineering Services and ArQuiServs\nUnit E 476 Boni Avenue, Mandaluyong City, Philippines\nTelefax: +632-719-4839 Mobile: +639197580646\nEmail: nlbaniqued@architectnoel.com\n\nLook for Noel L. Baniqued";
function IE(e) 
{
     if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
     {
          alert(message);
          return false;
     }
}
function NS(e) 
{
     if (document.layers || (document.getElementById && !document.all))
     {
          if (e.which == "2" || e.which == "3")
          {
               alert(message);
               return false;
          }
     }
}
document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");