function mostrarMenuCabecera(lenguaje)
{
    var indice;
    var noticias, contacto, artistas, carro;
    var pagina = self.location.href.match( /\/([^/]+)$/ )[1];
   
    if (lenguaje == "es"){
    	noticias = "Noticias";
    	contacto = "Contacto";
    	artistas = "Artistas"
    	carro = "Ver carro"
    	indice ="../web/";
    }
    else{
    	noticias = "News";
    	contacto = "Contact";
    	artistas = "Artists";
    	carro = "View cart"
    	indice ="../../web/";
    }
   
    document.write('<table width=\"990\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr><td width=\"990\" height=\"63\" background=\"' + indice + 'imagenes/encabezado.gif\">')
    document.write('<table width=\"990\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">')
    document.write('<tr>')
    document.write('<td width=\"20\">&nbsp;</td>')
    document.write('<td width=\"50\"><div align=\"center\"><img src=\"' + indice + 'imagenes/logo_barco.gif\" width=\"42\" height=\"41\" /></div></td>')
    document.write('<td width=\"220\"><div align=\"center\"><img src=\"' + indice + 'imagenes/logo_texto.gif\" width=\"193\" height=\"36\" /></div></td>')
    document.write('<td width=\"120\">&nbsp;</td>')
    document.write('<td>')
    document.write('<table cellspacing=\"0\" cellpadding=\"0\" id=\"DB_menu\" class=\"ddm1\">')
    document.write('<tr>')
    document.write('<td width=\"80\">')
    document.write('<a class=\"item1\" target=\"_parent\" href=\"../web\">' + noticias + '</a></td><td width=\"80\">')
    document.write('<a class=\"item1\" href=\"javascript:void(0)\">' + artistas + '</a>')
    document.write('<div class=\"section\">')
    document.write('<a class=\"item2\" target=\"_parent\" href=\"../clyde">Clyde</a>')
    document.write('<a class=\"item2\" target=\"_parent\" href=\"../8mn">Eightman</a>')
    document.write('<a class=\"item2\" target=\"_parent\" href=\"../h2v">Hacia Dos Veranos</a>')
    document.write('</div>')
    document.write('</td>')    
    document.write('<td width=\"80\"><a class=\"item1\" target=\"_parent\" href=\"../DBShop">DBShop</a></td>')
    document.write('<td width=\"80\"><a class=\"item1\" href=\"../web/DB_contacto.html\">' + contacto + '</a></td>')

    if (pagina == "DB_noticias.html" || pagina == "DB_contacto.html" ){   	
    	document.write('<td width=\"230\" bordercolor=\"0\"><div align=\"center\"><a href=\"http://www.myspace.com/discosdelabahia\" onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage(\'MS_DB\',\'\',\'' + indice + 'imagenes/iconos/myspace_DB_on.gif\',1)\"><img src=\"' + indice + 'imagenes/iconos/myspace_DB.gif\" alt=\"Discos de la Bahia @ MySpace\" name=\"MS_DB\" width=\"77\" height=\"19\" border=\"0\" id=\"MS_DB\" /></a></div></td>')
	  }
	  else if (pagina == "DB_shop.html" || pagina == "DB_shop_digital.html" || pagina == "DB_shop_MP.html" || pagina == "DB_shop_PP.html"){   	
    	document.write('<td width=\"230\" class=\"item1\"><form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><div align=\"center\"><input type=\"hidden\" name=\"cmd\" value=\"_cart\"><input type=\"hidden\" name=\"business\" value=\"dbshop@discosdelabahia.com\"><input type=\"image\" src=\"' + indice + 'imagenes/iconos/shopping_cart2.gif\" border=\"0\" name=\"submit\" alt=\"' + carro + '\">&nbsp;&nbsp;' + carro + '<input type=\"hidden\" name=\"display\" value=\"1\"><input type=\"hidden\" name=\"page_style\" value=\"DB_shop\"></div></form></td>')
		}
		else{
    	document.write('<td width=\"182\">&nbsp;</td>')		
		}
		
    document.write('</tr>')
    document.write('</table>')
    document.write('</td>')    
    document.write('</tr>')
    document.write('</table>')
    document.write('</td>')
    document.write('</tr>')
    document.write('</table>')    
    document.write('<script type=\"text/javascript\">var ddm1 = new DropDownMenu1(\'DB_menu\');ddm1.position.top = -1;ddm1.init();</script>')
}

function mostrarMenuPie(lenguaje)
{
    var indice;
    var noticias, contacto, artistas;
   
    if (lenguaje == "es"){
    	noticias = "Noticias";
    	contacto = "Contacto";
    	artistas = "Artistas"
    	indice ="../web/";    	
    }
    else{
    	noticias = "News";
    	contacto = "Contact";
    	artistas = "Artists";
    	indice ="../../web/";
    }

    document.write('<table width=\"990\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr>')
    document.write('<td height=\"63\" valign=\"middle\" background=\"' + indice + '../web/imagenes/pie.gif\">')
    document.write('<div align=\"center\" class=\"Estilo72\"><span class=\"Estilo22\">')
    document.write('<a class=\"item1\" href=\"../web/DB_noticias.html\">' + noticias + '</a> | ')  
    document.write('<a class=\"item1\" target=\"_parent\" href=\"../DBShop\">DBShop</a> | ')
    document.write('<a class=\"item1\" href=\"../web/DB_contacto.html\">' + contacto + '</a>')
    document.write('<br/>Discos de la Bah&iacute;a &copy; 2010<br/>')
    document.write('</span></div>')
    document.write('</td>')
    document.write('</tr>')
    document.write('</table>')    
}

function mostrarIdioma(diccionario, lenguaje){

    var destino = "";
    var encontrada = false;
    var pagina = self.location.href.match( /\/([^/]+)$/ )[1];
    var indice;
    var idioma;
    var bandera_nombre;
    var bandera_gif;
    
    if (lenguaje == "es"){
        idioma="Espaņol";
        bandera_nombre="spa_flag";
        bandera_gif="spain_flag";
        indice ="../../web/";
    }
    else{
        idioma="English";
        bandera_nombre="eng_flag";
        bandera_gif="english_flag";
        indice ="../web/";        

    }            

    // La buscamos en el diccionario para saber el destino que le corresponde
    var i=0;
    while (i<diccionario.length && destino ==""){ 
        if (diccionario[i][0] == pagina){
        	destino = diccionario[i][1];
        	encontrada = true;
        }
        i++;
    } 

    document.write('<table width=\"990\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr>')
    document.write('<td>&nbsp;</td>')
    
/*
if (encontrada){
        document.write('<td width=\"30\" valign=\"middle\">')
        document.write('<div align=\"center\">')
        document.write('<a href=\"' + destino +'\"')
        document.write('onmouseout=\"MM_swapImgRestore()\"')
        document.write('onmouseover=\"MM_swapImage(\'' + bandera_nombre + '\',\'\',\'' + indice + 'imagenes/' + bandera_gif + '.gif\',0)\">')
        document.write('<img src=\"' + indice + 'imagenes/' + bandera_gif + '_off.gif\" alt=\"' + idioma + '\" name=\"')
        document.write(bandera_nombre + '\" width=\"18\" height=\"12\" border=\"0\" id=\"' + bandera_nombre + '\" />')
        document.write('</a>')
        document.write('</div>')
        document.write('</td>')
        document.write('<td width=\"50\" valign=\"middle\" class=\"Estilo114\">')
        document.write('<div align=\"left\" class=\"Estilo130\">')
        document.write(idioma)
        document.write('</div>')
        document.write('</td>')
    }
	*/
	document.write('</tr>')
	document.write('</table>')

}

function mostrarCabeceraAviso(lenguaje){

    var indice;
    
    if (lenguaje == "en"){
        indice ="../../web/";
    }
    else{
        indice ="../web/";        
    }     
    
    document.write('<table width=\"990\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr>')
    document.write('<td width=\"990\" height=\"63\" background=\"' + indice + 'imagenes/encabezado.gif\">')
    document.write('<table width=\"280\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr>')
    document.write('<td width=\"50\"><div align=\"center\"><a href=\"../\" target=\"_parent\"><img src=\"' + indice + 'imagenes/logo_barco.gif\" width=\"42\" height=\"41\" border=\"0\" /></a></div></td>')
    document.write('<td width=\"220\"><div align=\"center\"><a href=\"../\" target=\"_parent\"><img src=\"' + indice + 'imagenes/logo_texto.gif\" width=\"193\" height=\"36\" border=\"0\" /></a></div></td>')
    document.write('</tr>')
    document.write('</table>')
    document.write('</td>')
    document.write('</tr>')
    document.write('</table>')
}

function mostrarPieAviso(lenguaje){
    var indice;
    
    if (lenguaje == "en"){
        indice ="../../web/";
    }
    else{
        indice ="../web/";        
    }
    document.write('<table width=\"990\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">')
    document.write('<tr>')
    document.write('<td height=\"63\" valign=\"middle\" background=\"' + indice + '../web/imagenes/pie.gif\"><div align=\"center\" class=\"Estilo72\"> <span class=\"Estilo22\">Discos de la Bah&iacute;a &copy; 2009</span></div></td>')
    document.write('</tr>')
    document.write('</table>')
}