// JavaScript Document

document.getElementById("locator-label").className+=" script";
document.getElementById("locator-label").style.opacity = "0.6";
if(document.getElementById("ctl00_ctl00_Footer_locatorLocation").value!=""){
	document.getElementById("locator-label").className+=" noshow";
}
document.getElementById("ctl00_ctl00_Footer_locatorLocation").onfocus = function() {
	document.getElementById("locator-label").className=document.getElementById("locator-label").className.replace(new RegExp(" noshow\\b"), "");
	document.getElementById("locator-label").className+=" noshow";
}
document.getElementById("ctl00_ctl00_Footer_locatorLocation").onblur = function() {
	if(this.value==""){
		document.getElementById("locator-label").className=document.getElementById("locator-label").className.replace(new RegExp(" noshow\\b"), "");
	}
}
