// change url location from eng to chi
//var console = window.open("", "console", "width=400,height=200,toolbar=no,statusbar=no,menubar=no,scrollbars=yes");

function lang_change(lang) {
	var flg = "chi";
	if (lang != "eng")  flg = "eng";

	//alert (top.frames.length);

	if (top.frames.length)
		for (var i=0; i<top.frames.length; i++)
		{
			var temp_loc = top.frames[i].document.location.toString();
			var new_loc = temp_loc.replace(flg, lang);
			//~ alert ("frame " + i + " -- " + new_loc);
			//~ alert ("new_loc: " + new_loc);
			top.frames[i].document.location = new_loc;
		}
	else
	{ // no frames exist
		//alert("Inside no frames section");
		var temp_loc = top.document.location.toString();
		var new_loc = temp_loc.replace(flg, lang);
		top.document.location = new_loc;
	}
}


