if (navigator.appName=="Netscape") 
document.writeln('<link rel="stylesheet" type="text/css" href="netscape.css" title="Netscape">');
else 
document.writeln('<link rel="stylesheet" type="text/css" href="explorer.css" title="Explorer">');

if (document.layers){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick;
window.onmouseup=rightclick;
function rightclick(e) {
if (e.which == 3) {
// Put right mouse code here
alert('Copyright (c) HMKS!');
return false; 
}
else {
return true; 
}
}
}
if (document.all){
function click() {
if (event.button==2) {
alert('Copyright (c) HMKS!')
}
if (event.button==3) {
alert('Copyright (c) HMKS!')}
}
document.onmousedown=click
}

function vege() {
document.write("<center><span class='copy'>Copyright &copy; 1998-2010 by HMKS. All rights reserved.<br>");
document.write("All specifications subject to change without notice.</span><br><br>");
}
