function showHide(obj){
	document.getElementById(obj).style.display = document.getElementById(obj).style.display==''?'none':'';
}

function textFocusBlur(obj,txt,typ){
	if(!typ && obj.value==""){
		obj.value = txt;
	}
	if(typ && obj.value==txt){
		obj.value = "";
	}
}