/*
 * Copyright (c) 2007 Susana Poulsen (www.tehuel.com)
 * Date: Octubre 2007
 */


var cad2 = location.href;
var posicion_barraultima = cad2.lastIndexOf("/");
var cad4 = location.href.substring(location.href.lastIndexOf("/")+1);
var posicion = cad4.lastIndexOf("_");
              // var   W=screen.width;
			   var   W=750;
               var   H=700;
               var   escala=1;
if(posicion < 0){ 
   var posicion_punto=cad4.lastIndexOf(".")
   var nombre=cad4.substring(0,posicion_punto);
   var direcc =location.href.substring(0,posicion_barraultima+1);
   document.write("<ul>");
   
 document.write("<a href='javascript:abrirVentana()'><li>Especificaciones</li></a>");
   // document.write("<li>Descargas</li>".link(direcc+nombre+"_descargas.php"));
   document.write("<li>Fotos</li>".link(direcc+nombre+"_fotos.php"));
   document.write("</ul>");
     
}else{
   var nombre=cad4.substring(0,posicion);
   var direcc =location.href.substring(0,posicion_barraultima+1);
   document.write("<ul>");
   
 document.write("<a href='javascript:abrirVentana()'><li>Especificaciones</li></a>");
  // document.write("<li>Descargas</li>".link(direcc+nombre+"_descargas.php"));
   document.write("<li>Fotos</li>".link(direcc+nombre+"_fotos.php"));
   document.write("</ul>");
   document.write("<a href="+direcc+nombre+'.php'+" class='volver'> <img src='../../img/flecha_volver.gif' alt='Volver' width='8' height='8' /> Volver</a>");
   
}
function abrirVentana(){
	
 // W=screen.width;
  W=750;
  H=700;
  escala=1;
  window.open(direcc+nombre+"_especificaciones.php","","width="+(escala*W)+",height="+(escala*H)+",left="+(screen.width-(escala*W))/2+",top="+(screen.height-(escala*H)-50)/2+",resizable=yes, scrollbars=yes, status=yes");
}

