// navbar.js
google_ad_client = "pub-4639088530133416";
google_ad_width = 728;
google_ad_height = 90;
google_alternate_ad_url = "http://www.osmosislatina.com/adsosmosis/guias_rapidas_html_banner.html";
google_ad_format = "728x90_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('instalacion.htm','buzones.htm','recabacion.htm','migrar.htm', 'multiples.htm','marcacion.htm');
var Text = new Array('Instalaci&#243;n Inicial','Buzones de Qmail','Recabaci&#243;n de Correo Electr&#243;nico','Migrar de Sendmail a Qmail','Dominios y usuarios M&#250;ltiples','Qmail con conexi&#243;n Dial-up (email Intermitente)');


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 += '<tr><td align="center" bgcolor="#eeeeee">' + libroString("eeeeee") + '</td></tr></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] = "1565926285";
productos[1] = "1893115402";
productos[2] = "0672319454";
productos[3] = "1565928393"; 
productos[4] = "0596004710"; 


// 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);	
}
