<!--
//Making a menu object
oMenu=new menuObj('oMenu') //Place a name for the menu in there. Must be uniqe for each menu

//Setting menu object variables

//Style variables NOTE: The stylesheet have been removed. Use this instead! (some styles are there by default, like position:absolute ++)
oMenu.clMain='padding:0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;' //The style for the main menus
oMenu.clSub='padding:0px; font-size: 10px; font-family: Verdana, Geneva, Arial; text-decoration: none;  ' //The style for the submenus
oMenu.clSubSub='padding:0px; font-size: 10px; font-family: Verdana, Geneva, Arial; text-decoration: none; ' //The style for the subsubmenus
oMenu.clAMain='text-decoration:none;' //The style for the main links
oMenu.clASub=' font-size: 10px; font-family: Verdana, Geneva, Arial; text-decoration: none;' //The style for the sub links
oMenu.clASubSub=' font-size: 10px; font-family: Verdana, Geneva, Arial; text-decoration: none;' //The style for the subsub links

//Background bar properties
oMenu.backgroundbar=0 //Set to 0 if no backgroundbar
//oMenu.backgroundbarfromleft=0 //The left placement of the backgroundbar in pixel or %
//oMenu.backgroundbarfromtop=70 //The top placement of the backgroundbar  in pixel or %
//oMenu.backgroundbarsize="250" //The size of the bar in pixel or %
//oMenu.backgroundbarcolor="NAVY" //The backgroundcolor of the bar


oMenu.mainheight=17 //The height of the main menuitems in pixel or %
//oMenu.mainwidth=new Array(60,113,98,87,117,121,95,77)
oMenu.mainwidth=new Array(45,100,100,100,100,100,123,100)

oMenu.subwidth=new Array(60,124,115,145,135,132,133,100) //The width of the submenus in pixel or %
//oMenu.subwidth=new Array(71,124,109,98,128,132,106) //The width of the submenus in pixel or %
oMenu.subheight=17 //The height if the subitems in pixel or %
//20
oMenu.subsubwidth=new Array(60,150,110,165,117,121,95,77)// The width of the subsubmenus in pixel or %
//oMenu.subsubwidth=new Array(71,124,109,98,128,132,106)// The width of the subsubmenus in pixel or %
oMenu.subsubheight=oMenu.subheight // The height if the subsubitems in pixel or %

//Writing out the style for the menu (leave this line!)
oMenu.makeStyle()

oMenu.subplacement=oMenu.mainheight //** NEW ** Relative to the main item
oMenu.subsubXplacement=new Array(30,57,49,75,59,61,70)//The X placement of the subsubmenus, relative to the sub item
oMenu.subsubYplacement=17 //The Y placement of the subsubmenus, relative to the sub item

oMenu.mainbgcoloroff='#fefefe' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloron='#bababa' //The backgroundcolor on mouseover of the main menuitems
oMenu.subbgcoloroff='#ececec' //The backgroundcolor of the sub menuitems
oMenu.subbgcoloron='#dddddd' //The backgroundcolor on mouseover of the sub menuitems
oMenu.subsubbgcoloroff='#dddddd' //The backgroundcolor of the subsub menuitems
oMenu.subsubbgcoloron='#b9b9b9' //The backgroundcolor on mouseover of the subsub menuitems
oMenu.stayoncolor=1 //Do you want the menus to stay on the mouseovered color when clicked?

oMenu.menuspeed=15 //The speed of the clipping in px
oMenu.menusubspeed=15 //The speed of the submenus clipping in px

oMenu.menurows=1 //Set to 0 if you want rows and to 1 if you want columns

oMenu.menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
oMenu.menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"


//Placement of the menuitems

//Example in %:
//oMenu.menuplacement=new Array("20%","40%","60%","50%","65%") //Remember to make the arrays contain as many values as you have main menuitems

//Example in px: (remember to use the ' ' around the numbers)
//oMenu.menuplacement=new Array(10,200,300,400,500)

//Example right beside eachother (only adding the pxbetween variable)
oMenu.menuplacement=0

//If you use the "right beside eachother" you cant how many pixel there should be between each here
oMenu.pxbetween=0 //in pixel or %


//And you can set where it should start from the left here
var displacement


if (bisw.ns4){
    //This is how much from the top the menu should be.
    oMenu.fromtop=64 //in pixel or %
displacement = -12;
    if (window.innerWidth <= 760)
      //  oMenu.fromleft= displacement + 15
        oMenu.fromleft= 0
    else
    //    oMenu.fromleft= displacement + (window.innerWidth - 760)/2//in pixel or %
        oMenu.fromleft= 0
    }
else {
	
    //This is how much from the top the menu should be.
    oMenu.fromtop=61 //in pixel or %
displacement = -4;
    if (document.body.clientWidth <= 760){
        //oMenu.fromleft= displacement;
		oMenu.fromleft= 0
   } else{
	    //oMenu.fromleft= displacement + (document.body.clientWidth - 760)/2 ;//in pixel or %
		oMenu.fromleft= 0
    }
}





//Main items:
// makeMain(MAIN_NUM, TAMANO ,'LINK','TEXTO','FRAME_TARGET') (set link to 0 if you want submenus of this menu item)
//Sub items:
// makeSub(MAIN_NUM,SUB_NUM,TAMANO,'LINK','TEXTO',TOTAL,'FRAME_TARGET') (set link to 0 if you want submenus of this menu item)
//Subsub items:
// makeSubSub(MAIN_NUM,SUB_NUM,SUBSUB_NUM,TAMANO,'LINK','TEXTO',TOTAL,'FRAME_TARGET')

//MENU DE INICIO
//oMenu.makeMain(0,56,'/','Inicio') Con boton ayuda
oMenu.makeMain(0,45,'/','Home')
//MENU DE CONEXION
//oMenu.makeMain(1,110,'/conexion/','Conexión') Con boton ayuda
oMenu.makeMain(1,100,'/news.phtml','News')
	//SUBMENUS DE CONEXION
	oMenu.makeSub(1,0,122,'/news.phtml?type=lat','Latest News',3)
	oMenu.makeSub(1,1,122,'/news.phtml?type=list','Full Listing',3)
    oMenu.makeSub(1,2,122,'/news.phtml?type=search','Search Archive',3)
					
       
//MENU DE SERVICIOS		   
//oMenu.makeMain(2,95,'/servicios/','Servicios') Con boton ayuda
oMenu.makeMain(2,100,'/c_concept.htm','Cookies')
	//SUBMENUS DE SERVICIOS
	oMenu.makeSub(2,0,113,'/content.phtml\?area=2&id=1','Cookie Concept',10)
	oMenu.makeSub(2,1,113,'/content.phtml\?area=2&id=2','The Dark Side',10) 
	oMenu.makeSub(2,2,113,'/content.phtml?area=2&id=3','Technology Under',10) 
	oMenu.makeSub(2,3,113,'/content.phtml?area=2&id=3','Attack',10)
	oMenu.makeSub(2,4,113,'/content.phtml?area=2&id=4','Privacy Links',10)
	oMenu.makeSub(2,5,113,'/content.phtml?area=2&id=7','Javascript Code',10)
    oMenu.makeSub(2,6,113,'/content.phtml?area=2&id=8','CGI Code',10)
	oMenu.makeSub(2,7,113,'/content.phtml?area=2&id=9','Java Demos',10)
	oMenu.makeSub(2,8,113,'/content.phtml?area=2&id=13','Viruses',10)
    oMenu.makeSub(2,9,113,'','',10)
   
  		
        
//MENU CANALES
oMenu.makeMain(3,100,'/files.htm','Software')
	//SUBMENUS DE CANALES
    oMenu.makeSub(3,0,143,'/software.phtml?type=pc','PC Software',14)
	oMenu.makeSub(3,1,143,'/software.phtml?type=mac','Mac Software',14)
	oMenu.makeSub(3,2,143,'/','',14)
	oMenu.makeSub(3,3,143,'/','',14)
    oMenu.makeSub(3,4,143,'/','',14)
    oMenu.makeSub(3,5,143,'/','',14)
    oMenu.makeSub(3,6,143,'','',14)
    oMenu.makeSub(3,7,143,'','',14)
    oMenu.makeSub(3,8,143,'','',14)
    oMenu.makeSub(3,9,143,'','',14)
    oMenu.makeSub(3,10,143,'','',14)
	oMenu.makeSub(3,11,143,'','',14)
	oMenu.makeSub(3,12,143,'','',14)
    oMenu.makeSub(3,13,143,'','',14)
    
	
    	
		
//MENU BUSQUEDAS
oMenu.makeMain(4,100,'/faq','FAQ')
	//SUBMENUS BUSQUEDAS
    oMenu.makeSub(4,0,133,'/faq/','Unofficial FAQ',4)
    oMenu.makeSub(4,1,133,'/content.phtml?area=4&id=11','Active FAQ',4)
    oMenu.makeSub(4,2,133,'/content.phtml?area=4&id=10','Cookies And Privacy',4)
    oMenu.makeSub(4,3,133,'/','',4)

//MENU COMUNIDAD
oMenu.makeMain(5,100,'/crypto.htm','Crypto')
	//SUBMENUS DE COMUNIDAD
    oMenu.makeSub(5,0,130,'/content.phtml?area=5&id=6','Introduction',6)
	oMenu.makeSub(5,1,130,'/','',6)
    oMenu.makeSub(5,2,130,'/','',6)
    oMenu.makeSub(5,3,130,'/','',6)
    oMenu.makeSub(5,4,130,'/','',6)
    oMenu.makeSub(5,5,130,'/','',6)

    
//MENU COMPRAS
oMenu.makeMain(6,123,'/board/','Message Board')
	//SUBMENUS DE COMUNIDAD
    	oMenu.makeSub(6,0,130,'/board/','board',5)
	oMenu.makeSub(6,1,130,'/board/','',5)
	oMenu.makeSub(6,2,130,'','',5)
	oMenu.makeSub(6,3,130,'','',5)
    	oMenu.makeSub(6,4,130,'','',5)

    		
     
//MENU MOVIL 
oMenu.makeMain(7,100,'/info.phtml','About')
	//SUBMENUS MOVIL
	oMenu.makeSub(7,0,97,'/info.phtml','Feedback',1)					


//MENU AYUDA
//oMenu.makeMain(7,74,'/ayuda/','Ayuda') boton ayuda


//When all the menus are written out we initiates the menu
//oMenu.construct()


    oMenu.construct();

ie=(document.all)?1:0;
//-->
