// JavaScript Document

var isShown = false;
	
function swapTabPanelVisibility(thePanel,theTab) {
	if (isShown) {
		hideTabPanel(thePanel,theTab);
		isShown = false;
	} else {
		showTabPanel(thePanel,theTab);
		isShown = true;
	}
}
function showTabPanel(thePanel,theTab) {	
	var currWidth = parseInt($(thePanel).style.width.replace("px",""));
	
	currWidth = currWidth + 4;
	
	if (currWidth >= 222) {
		$(thePanel).style.width = "222px";
		$(theTab).writeAttribute("style","background-image:url(http://www.mineduc.gob.gt/portal/images/accesibilidad/tabOpen.png);");
		return true;
	}
	
	$(thePanel).style.width = currWidth + "px";
	
	setTimeout("showTabPanel('"+thePanel+"','"+theTab+"')",5);
}
function hideTabPanel(thePanel,theTab) {
	var currWidth = parseInt($(thePanel).style.width.replace("px",""));
	currWidth = currWidth - 4;
	
	if (currWidth <= 0) {
		$(thePanel).style.width = "0px";
		$(theTab).writeAttribute("style","background-image:url(http://www.mineduc.gob.gt/portal/images/accesibilidad/tabClose.png);");
		return false;
	}
	
	$(thePanel).style.width = currWidth + "px";
	
	setTimeout("hideTabPanel('"+thePanel+"','"+theTab+"')",5);
}
function showDivComentario() {
	$("divEnviarComentario").show();
}
function hideDivComentario() {
	$("divEnviarComentario").hide();
}
