	//Site Developed by Daniel Sercombe. Zolus Designs UK. Copyright 2003
	


	//This is the Silent Right Click Script.
	var message="";
	function clickIE() {if (document.all) {(message);return false;}}
	function clickNS(e) {if 
	(document.layers||(document.getElementById&&!document.all)) {
	if (e.which==2||e.which==3) {(message);return false;}}}
	if (document.layers) 
	{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
	else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}




	//Centered Popup Window
	function newWindow(mypage,myname,w,h,features) {
	if(screen.width){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	}else{winl = 0;wint =0;}
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	settings += features;
	win = window.open(mypage,myname,settings);
	win.window.focus();
	}



	//Status Bar Text
	function StatuSbar()
	{
	window.defaultStatus="Website Developed by Zolus Internet UK"
	}
	function WriteDate()
	{
	Time = new Date()
	document.write(Time.getDate()+"/"+(Time.getMonth()+1)+"/"+Time.getFullYear())
}