function cleartext(obj){obj.value = "";}
function toggleVisibility(id){
	var theElement = document.getElementById(id);	
	if(theElement.style.display=='none'){
	  theElement.style.display='';	
	} else{
		theElement.style.display='none';
	}
}