function changeStyle(id,string){
	document.getElementById(id).className = string;
	return false;
}

function hide_show(id,string){
	document.getElementById(id).style.visibility = string;
	return false;
}

function changeBackgroundStyle(id,string){
	document.getElementById(id).style.backgroundImage = "url("+string+")";
	return false;
}
