// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +           Estilos MasterPage Aplicaciones EPM            + */
/* +       Julio Cesar González Arango - Intergrupo S.A.      + */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++ MENU HORIZONTAL ++++++++++++++++++++++ */
//SuckerTree Horizontal Menu (Sept 14th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["ulMenuPpal"] //Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus_horizontal()
{
    if(document.getElementById(menuids[0]))
    {
	    for (var i=0; i<menuids.length; i++)
	    {
  	    var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul");
        for (var t=0; t<ultags.length; t++)
		    {
			    if (ultags[t].parentNode.parentNode.id==menuids[i])
			    { //if this is a first level submenu
				    ultags[t].style.top=ultags[t].parentNode.offsetHeight+"px"; //dynamically position first level submenus to be height of main menu item
			    }
			    else
			    { //else if this is a sub level menu (ul)
		  	    ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px"; //position menu to the right of menu item that activated it
			    }
    	    ultags[t].parentNode.onmouseover=function(){
    	    this.getElementsByTagName("ul")[0].style.visibility="visible";
        }
        ultags[t].parentNode.onmouseout=function()
			    {
    		    this.getElementsByTagName("ul")[0].style.visibility="hidden";
    	    }
  	    }
      }
  }
}

if (window.addEventListener)
{
	window.addEventListener("load", buildsubmenus_horizontal, false);
}
else if (window.attachEvent)
{
	window.attachEvent("onload", buildsubmenus_horizontal);
}

/* ++++++++++++++++++++++++++ VARIAS ++++++++++++++++++++++++++ */
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function AbrirVentana(){
	var posX = (screen.availWidth - 100) / 5;
	var posY = (screen.availHeight - 50) / 5;
	window.open("PuntosVenta.xls","PuntosVenta","toolbar=no, location=no, directories=no, status=no, menubar=no, top="+ posY + ", left="+ posX +", scrollbars=no, resizable=true, copyhistory=no,width=750, height=500");
}