// JavaScript Document
function showTab(id, numTabs)
{
//alert(id+" di "+numTabs);
	
		for (i=1; i<=numTabs; i++){
				if(i==id){
			        document.getElementById("tab"+i).style["display"] = "block";
					document.getElementById("tabLabel_"+i).className = "tab active";
				}else{
					document.getElementById("tab"+i).style["display"] = "none";
					document.getElementById("tabLabel_"+i).className = "tab";
				}
		}

		document.getElementById("divDay").innerHTML = '<input name="day" id="day" type="hidden" value="' + id + '"/>';
	  
}
///
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}