var isIe6=(navigator.appVersion.indexOf("MSIE 6.0") != -1)?true:false;
function $(id){
	return document.getElementById(id);
}

function showOrario(id){
	/*if(isIe6){
		var dis=$(id).style.display;
		if(dis=='none'){
			//($(id).offsetParent.style.height=parseInt($(id).offsetParent.style.height+135;
			alert($(id).offsetParent.offsetHeight);
			$(id).offsetParent.offsetHeight=$(id).offsetParent.offsetHeight+135;
		}
		
	}else{*/
		$(id).style.display=($(id).style.display=='none')?'':'none';
	//}
}