var dom = (document.getElementById) ? true : false;
var ns4 = (document.layers && !dom) ? true : false;
var ns6 = ((navigator.userAgent.indexOf("Netscape6")>-1) && dom) ? true: false;
var ns7 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false;
var ie4 = (document.all && !dom) ? true : false;
var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
var nodyn = (!ns6 && !ns4 && !ie4 && !ie5) ? true : false;
var mac = (navigator.userAgent.toLowerCase().indexOf("mac")!=-1) ? true: false;
var safari = (typeof document.childNodes!="undefined" && typeof document.all=="undefined" && typeof navigator.taintEnabled=="undefined") ? true: false;

//Disable right click script III- By Renigade (renigade@mediaone.net)
//Modified by Dreaming Digital

var message="";


function clickIE() {
	if (document.all) {
	//	alert(message);
		return false;
	}
}

function clickNS(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=clickNS;
}
else if (ns7) {
	document.onmouseup=clickNS;
    document.oncontextmenu=new Function("return false");
}
else {
	document.onmouseup=clickNS;
	document.oncontextmenu=clickIE;
}


function trap() {
	//do nothing;
}



var flashwin2=null;

function popup2(url,target,w,h){
	LeftPosition=(screen.width)?(screen.width-w)/2:100;
	TopPosition=(screen.height)?(screen.height-h)/2:100;

	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=yes';

	flashwin2=window.open(url,target,settings);
}
