function makeFriendly(e){
}
function focusInputSidebarLocate(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
		theId.style.fontStyle = 'normal';
		theId.style.fontSize = '2.1em';
		theId.style.fontWeight = 'bold';
		theId.style.textAlign = 'center';
		theId.style.color = '#0055a4';
		theId.style.borderColor = '#0055a4';
		theId.style.background = '#ffffff';
		theId.maxLength = '5';
	}
}
function blurInputSidebarLocate(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
		theId.style.fontStyle = 'italic';
		theId.style.fontSize = '1.1em';
		theId.style.fontWeight = 'normal';
		theId.style.textAlign = 'left';
		theId.style.color = '#999999';
		theId.style.borderColor = '#dedec8';
		theId.style.background = '#f9f9f9';
		theId.maxLength = '13';
		theId.value = 'Your Zip Code';
	}
}
function focusInputSidebarSubscribe(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
		theId.style.fontStyle = 'normal';
		theId.style.color = '#333333';
		theId.style.background = '#ffffff';
	}
}
function blurInputSidebarSubscribe(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
		theId.style.fontStyle = 'italic';
		theId.style.color = '#999999';
		theId.style.background = '#f9f9f9';
	}
}
function focusInputSearch(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
		theId.style.color = '#000000';
	}
}
function blurInputSearch(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
		theId.style.color = '#999999';
	}
}
function popupWin(theUrl, theWidth, theHeight) { 
	window.open(theUrl, 'popupWin_lance', 'width='+theWidth+',height='+theHeight+',scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=n'); 
}