// JavaScript Document
function ShowSearchCity(){
	document.getElementById('LocationsCity').style.display="";
	document.getElementById('LocationsZipcode').style.display="none";
}
function ShowSearchZip(){
	document.getElementById('LocationsCity').style.display="none";
	document.getElementById('LocationsZipcode').style.display="";
}

function SingleCMSBody(){
	document.getElementById('rightAreaLabel').style.display="none";
	document.getElementById('rightAreaData').style.display="none";
}
function DoubleCMSBody(){
	document.getElementById('rightAreaLabel').style.display="";
	document.getElementById('rightAreaData').style.display="";
}
function ShowHide(tDiv){
	if (document.getElementById(tDiv).style.display == ''){
		document.getElementById(tDiv).style.display = 'none';
	} else {
		document.getElementById(tDiv).style.display = '';
	}
}
function popup(tURL, tWidth, tHeight, tScroll){
	window.open(tURL, '', 'width=' + tWidth + ',height=' + tHeight + ',scrollbars=' + tScroll);	//Create a popup object
}
function disableSelection(element) {
	element.onselectstart = function() {
		return false;
	};
	element.unselectable = "on";
	element.style.MozUserSelect = "none";
	element.style.cursor = "default";
}