function NoSpam(emn,dmn,dme,nme,cls) {
if (nme == null || nme == '') {
	nme = emn + '@' + dmn + '.' + dme;
	}
email = '<a href="mailto:' + emn + '@' + dmn + '.' + dme + '"';
if (cls != null) {
	email = email + ' class="' + cls + '"'
}
email = email + '>' + nme + '</a>';
document.write (email);
}

var msg="Function Disabled!";

function clickIE4(){
	if (event.button==2){
		alert(msg);
		return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(msg);
			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(msg);return false");

function siGetHeight() {
	return window.innerHeight ? window.innerHeight : document.body.offsetHeight;
}
function siLoad () {
	var siHeight = siGetHeight() - 100;
	if (document.getElementById) {
		document.getElementById('content').style.height = siHeight;
	} else if (document.all) {
		document.all("content").style.height = siHeight;
	} else if (document.layers) {
		document.layers['content'].height = siHeight;
	}
}
if (top.location != self.location) { top.location = self.location; }
function NewWindow(mypage,w,h,scroller) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroller+',resizable'
	win = window.open(mypage, 'popwin', winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus()
	}
}