	<!--
	msg = "Convergence of Experienced Minds To Keep You In The Winning Track";
	spacer = "..  .."
	pos=0;
	function ScrollMessage() {
		window.status = ".:: "+ msg.substring(pos, msg.length) + spacer +  msg.substring(0,pos) + " ::.";
		pos++;
		if (pos>msg.length) pos=0;
		window.setTimeout("ScrollMessage()",100);
	}
	ScrollMessage();
	//-->

<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

///////////////////////////////////
function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
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("return false")

// --> 
