			
function show_hide(Id, disp){
	try{
		document.getElementById(Id).style.display = disp;
	}catch(e){}
}
			