// JavaScript Document

function agregar(){
//Para internet explorer
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url="http://www.tudireccion.com/"; //Cambia esta dirección por la de tu web
var titulo="El nombre de mi web"; //Cambia esta nombre por el de tu web
window.external.AddFavorite(url,titulo);
}
//Para Netscape y Firefox
else {
if(navigator.appName == "Netscape")
alert ("Presione Crtl+D para agregar a este sitio en sus Bookmarks");  //Puedes personalizar este mensaje
}
}



var a = 12;
function fuente(bit) {
	if (bit == '1') a++
	else a--
	if (a < 10) a = 10
	if (a > 16) a = 16
	document.getElementById("texto").style.fontSize = a + "px"
}


 function imagex(){
                images = new Array(0);
                images[0] = "<img src='images/publicidades/p-gamasi.gif' alt='gamasi'>";
                images[1] = "<img src='images/publicidades/p-braessas.gif' alt='braessas'>";
				images[2] = "<img src='images/publicidades/p-chapaferro.gif' alt='chapaferro'>";
				images[3] = "<img src='images/publicidades/p-maxxi.gif' alt='maxxi'>";
				images[4] = "<img src='images/publicidades/p-letanu.gif' alt='letanu'>";
				images[5] = "<img src='images/publicidades/p-bulonera.gif' alt='bulonera'>";
				images[6] = "<img src='images/publicidades/p-reusch.gif' alt='reusch'>";
				images[7] = "<img src='images/publicidades/p-age.gif' alt='age'>";

				
                index = Math.floor(Math.random() * images.length);
                document.write(images[index]);
 }
 