function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			oncontextmenu='return false';
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			oncontextmenu='return false';
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;");
/* document.ondragstart= new Function("return false;");
document.onselectstart= new Function("return false;"); */




theURL = this.location.href;
URLchanged = 0;

if (theURL.search(/http:\/\/volleyball.com.hk/gi) != -1) {
	theURL = theURL.replace(/http:\/\/volleyball.com.hk/gi, "http://www.volleyball.com.hk");
	URLchanged = 1;
}

if (URLchanged) {
	this.location.href = theURL;
}






function chg_lang(which_lang) {
	theURL = this.location.href;
	if (which_lang == "en") {
		theURL = theURL.replace(/\/tc\//gi, "/en/");
	} else if (which_lang == "tc") {
		theURL = theURL.replace(/\/en\//gi, "/tc/");
	}
	
	this.location.href = theURL;
}