// JavaScript Document
function show_hide(id,visib){
	document.getElementById(id).style.visibility=visib;
}

