

function translage(to)
{
	// È¡µÃÐÂµÄurl
	var form = document.getElementById("translateform");
	var url = window.location.pathname;
	document.getElementById("oldurl").value = url;
	document.getElementById("to").value=to;
	var search = window.location.search;
	var hash = window.location.hash;
	document.getElementById("search").value = search;
	document.getElementById("hash").value=hash;

	form.action = "/dotranslate.jsp";
	form.submit();
	
}


