
var initText = "Search within Energy";

function onFocusSearchBox(){
	var str = document.getElementById('te-searchEnergyBox');
	if(str.value==initText)
		str.value="";
}


function onBlurSearchBox(){
	var str = document.getElementById('te-searchEnergyBox');
	if(str.value==''||str.value==null)
		str.value="Search within Energy";
}


