var message="Sorry, this function is unavailable.";
///////////////////////////////////
function clickIE() {if (document.all) {window.open("terms.html");return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {window.open("terms.html");return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// --> 



var clickmessage="Sorry, this function is unavailable."

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
/*alert(clickmessage);*/
window.open("terms.html")
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
/*alert(clickmessage);*/
window.open("terms.html")
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
/*alert(clickmessage)*/
window.open("terms.html")
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
