var exit=true;
var domain;
var browserName = navigator.appName;
var locStr = new String(location);
locArray = locStr.split(/\//);
var protIndex = locStr.search(/^http:/);
if (protIndex == -1) {
	if (browserName=='Microsoft Internet Explorer') {
		domain = locArray[3];
	} else if (browserName=='Netscape') {
		domain = locArray[5];
	} else {
		domain = locArray[5];
	}
} else {
	if (browserName=='Microsoft Internet Explorer') {
		domain = locArray[1];
	} else if (browserName=='Netscape') {
		domain = locArray[2];
	} else {
		domain = locArray[4];
	}
}

window.onload = new Function("checkLinks()");
function checkLinks() {
	for (i=0; i<document.links.length; i++) {
		document.links[i].onclick = new Function("intLink(this)");
	}
}

function intLink (link) {
	var check;
	var thisStr = new String(link);
	thisArray = thisStr.split(/\//);
	var thisProtIndex = thisStr.search(/^http:/);
	if (thisProtIndex == -1) {
		if (browserName=='Microsoft Internet Explorer') {
			check = thisArray[3];
		} else if (browserName=='Netscape') {
			check = thisArray[5];
		} else {
			check = thisArray[5];
		}
	} else {
		if (browserName=='Microsoft Internet Explorer') {
			check = thisArray[1];
		} else if (browserName=='Netscape') {
			check = thisArray[2];
		} else {
			check = thisArray[2];
		}
	}
	if (domain == check) {
		exit=false;
	}
}

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Call us and I might let you do this!";

function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}


function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

