function click(e) { var msg="Sorry, that function is disabled."; if (document.all) { if (event.button == 2) { alert(msg); return false; } } if (document.layers) { if (e.which == 3) { alert(msg); return false; } } } if (document.layers) {
document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; 
function DisplayPhoto(FileName) { document.write("<p><img src=\"", FileName, "\">"); }/* end DisplayPhoto() */
function ShowLocation() {
         DS = "";
         DS += "Protocol" + "=" + window.location.protocol + "\n";
         DS += "Hostname" + "=" + window.location.hostname + "\n";
         DS += "Port" + "=" + window.location.port + "\n";
         DS += "Host" + "=" + window.location.host + "\n";
         DS += "Path" + "=" + window.location.pathname + "\n";
         DS += "Hash" + "=" + window.location.hash + "\n";
         DS += "Target" + "=" + window.location.target + "\n";
         DS += "Query" + "=" + window.location.query + "\n";
         DS += "Href" + "=" + window.location.href + "\n";
         DS += "appCodeName=" +  navigator.appCodeName + "\n";
         DS += "appName=" +  navigator.appName + "\n";
         DS += "appVersion=" +  navigator.appVersion + "\n";
         DS += "userAgent=" +  navigator.userAgent + "\n";
         DS += "plugins=" +  navigator.plugins + "\n";
         DS += "mimeTypes=" +  navigator.mimeTypes + "\n";
         window.alert(DS);
}/* end ShowLocation() */
