// JavaScript Document

function highlightMenu(section){
	//alert(section);
	document.getElementById(section).setAttribute("className", "selected");
	document.getElementById(section).setAttribute("class", "selected");
}
   
function showDiv(monDiv) {
	document.getElementById(monDiv).style.display = 'block';
}

function hideDiv(id){
	document.getElementById(id).style.display = 'none';
}

function pageLoad() 
      {
      }
     function ShowPopup() 
	  
	  {
        var x = (window.screen.width - 670) / 2;
        var y = (window.screen.height - 450) / 2;
        
        window.open("index2.aspx" ,"Juan","width=670, height=450, resizable=no,directories=no, toolbar=false, scrollbars=no, status=no, top="+y+",left="+x+" " );
	  }
