/* Common Functions */
function ShowHideTab(id, count, show){
	for(var i = 1; i <= count; i++){
		document.getElementById(id + "_tab_" + i).className = "";
		document.getElementById(id + "_cnt_" + i).style.display = "none";
	}
	document.getElementById(id + "_tab_" + show).className = "focus";
	document.getElementById(id + "_cnt_" + show).style.display = "block";
}
function ShowHySub(i){
	return;
	var d = null;
	if(i.getElementsByTagName("div").length >= 2){
		d = i.getElementsByTagName("div")[1];
	}
	d.style.display = "block";
}
