var message="Copyright © by bjorgul.com";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;


var myChoice, mySelection;
function CK_MenuItemRedirectPage(){
myChoice = document.myForm.myMenu.selectedIndex;
mySelection=document.myForm.myMenu.options[myChoice].value;
location=mySelection;
}


/* Copyright by bjorgul.com / Bjorgul */
