// JavaScript Document

// function to row show/hide ---------------------------------------------	
function show(id) {
	if (document.getElementById(id).style.display == "none"){
		
		document.getElementById(id).style.display = "";
	}
}
function hide(id) {
	if (document.getElementById(id).style.display == ""){
		
		document.getElementById(id).style.display = "none";
	}
}