function quickLink(where) {
	location.href = where;
}

function changeLogin(who) {
	$("#"+who).submit();
}

function changeLanguageTo(who) {
	if (who == "tc") {
		location.href = location.href.replace("/en/", "/tc/");
	} else if (who == "en") {
		location.href = location.href.replace("/tc/", "/en/");
	}
}

function popWin(url) {
	window.open(url, "Camera","status=0,toolbar=0,location=0,resizable=yes");
}
