
/* searchboxbg */
var searchboxbg = "url(/library/common/images/bg_search.gif)";

function searchBoxFocus(th){
	var obj = document.getElementById(th.id);
	
	if( obj.value == "" ){
		obj.value = "";
		obj.style.backgroundImage = "none";
	}
}
function searchBoxBlur(th){
	var obj = document.getElementById(th.id);
	
	if( obj.value == "" ){
		obj.style.backgroundImage = searchboxbg;
	}
}

onload = searchBoxInit;
function searchBoxInit(){
	document.getElementById("searchbox").value = "";
	fontsizechange('fs_init');
}




