function showHideSearch(){
	var curStatus = document.getElementById('searchbox-popup').style.visibility;
	if(curStatus == "visible"){
		document.getElementById('searchbox-popup').style.visibility = "hidden";
	}else if(curStatus == "hidden"){
		document.getElementById('searchbox-popup').style.visibility = "visible";
	}
}
function clearText(object,value){
	if(document.getElementById(object).value == "Search"){
		document.getElementById(object).value = "";
	}
}
