function get(el){
	return document.getElementById(el);
}

function getVal(el){
	return document.getElementById(el).value;
}

function checkClear(el,val){
	if(getVal(el)==val){get(el).value="";}
}

function checkFill(el,val){
	if(getVal(el)==""){get(el).value=val;}
}

function siteLogo_OnClick() {
	document.location = "/";
}

function getURL(url) {
	document.location = url;
}
