/* === <General Functions ================= */
/* ======================================== */
function goTo(url) {
	location.href=url;
}
function goToB(url) {
	window.open(url);
}
function shtOnBlur(id, text) {
	if(document.getElementById(id).value=='') document.getElementById(id).value=text;
}
function shtOnFocus(id, text) {
	if(document.getElementById(id).value==text) document.getElementById(id).value='';
}
/* === >General Functions ================= */
