/********************************************************************
 Used to hide and show portions of a page
********************************************************************/
function HideID(id){
	document.getElementById(id).style.display = "none";
	document.getElementById(id).style.position = "absolute";
}
 
function ShowID(id){
	if(navigator.appName == "Microsoft Internet Explorer"){
		document.getElementById(id).style.display = "block";
	}else{
		switch(document.getElementById(id).tagName.toUpperCase()){
			case "TR": document.getElementById(id).style.display = "table-row"; break;
			case "TD": document.getElementById(id).style.display = "table-cell"; break;
			case "TABLE": document.getElementById(id).style.display = "table"; break;
			default:document.getElementById(id).style.display = "block";
		}
	}
	document.getElementById(id).style.position = "static";
}