// JavaScript Document

		function ObrirPopup( e, pag, width, heigth )
		{
			var loc = e || window.event;
			
			var wind = window.open( pag, "", "toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width="+width+", height="+heigth+", left=100, Top=50" );
				wind.focus();
		}


		function desplegar_submenu(id)
		{
			document.getElementById(id).style.display = "block";
		}
