// navbar.js
google_ad_client = "pub-4639088530133416";
google_ad_width = 160;
google_ad_height = 600;
google_alternate_ad_url = "http://www.osmosislatina.com/adsosmosis/guias_rapidas_html_torre.html";
google_ad_format = "160x600_as";
google_ad_channel ="2344980502";
google_color_border = "55559B";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_url = "336699";
google_color_text = "333333";
var navURLs  = new Array('/knoppix/basico.htm', '/knoppix/arranque.htm', '/linux/comandos.jsp','/linux/index.jsp');
var Text = new Array('Instalación / Ejecución ','Opciones de Arranque','Comandos est&#225;ndares Linux','Linux ( Ambiente Global )');



function navbar() {
	var navStr= '<TABLE cellpading=10 align=left border="6">';
	for (var i = 0; i < navURLs.length; i++) {
		if (location.href.indexOf(navURLs[i]) == -1) {
			navStr += '<TR><TD align=center bgcolor="#eeeeee"><A HREF="' + navURLs[i] + '">'+ Text[i] + '</A></TR>';  }
			 else {
                        navStr += '<TR><TD align=center bgcolor="#ccceee">'+ Text[i] + '</TD></TR>'; }
	}
        navStr += '</TABLE>';
	document.writeln(navStr);
	}


// ********* INICIA SECCION PRODUCTOS AMAZON  **********

var cantidadproductos = 5;                 // Numero de libros
var productos = new Array(cantidadproductos); // Arreglo con ISBN/ID de libros
    
// ID/ISBN/ASIN  de prodcutos 
productos[0] = "0596007876";
productos[1] = "0764597841";
productos[2] = "0596100752";
productos[3] = "0764597795"; 
productos[4] = "0596007876"; 


// Escoger ASIN de libro aleatorio  
    
function pickRandom(range) {
        if (Math.random)
            return Math.round(Math.random() * (range-1));
        else {
            var now = new Date();
            return (now.getTime() / 1000) % range;
        }
}
    
// Definir string de documento 

function libroString(colorFondo) { 
     var seleccion = pickRandom(cantidadproductos);
     var libStr = '<b><i>M&#225;s recursos... </i></b><br/><iframe src="http://rcm.amazon.com/e/cm?t=osmosislatina-20&o=1&p=8&l=as1&asins=' + productos[seleccion] + '&fc1=000000&lc1=0000ff&bc1=ffffff&npa=1&lt1=_top&IS2=1&bg1=' + colorFondo +'&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>';
     return libStr;	
}

function libro() { 
     var seleccion = pickRandom(cantidadproductos);
     var libStr = '<b><i>M&#225;s recursos... </i></b><br/><iframe src="http://rcm.amazon.com/e/cm?t=osmosislatina-20&o=1&p=8&l=as1&asins=' + productos[seleccion] + '&fc1=000000&lc1=0000ff&bc1=ffffff&npa=1&lt1=_top&IS2=1&bg1=ffffff&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>';
     document.writeln(libStr);	
}
