// JavaScript Document
//<SCRIPT LANGUAGE="JavaScript"> 
// Realizado por: Fabian Muller modificado por ErneAlonZ edesign.com.ve
// Comienzo 

width="548"; //Anchura del banner 
height="202"; //Altura del banner 

banners= new Array(); 
links = new Array(); 

banners[0]="../p1.jpg"; 
banners[1]="../p2.jpg"; 
banners[2]="../p3.jpg"; 
banners[3]="../p4.jpg";

links[0]="../tienda/contact_us.php"; 
links[1]="../listas/Listado_bluray.xls"; 
links[2]="http://www.edesign.com.ve";
links[3]="http://www.dvdx.com.ve/tienda/privacy.php";           

totalbanners = banners.length; 
var ahora = new Date() 
var segundos = ahora.getSeconds() 
var ad = segundos % totalbanners; 
seleccionado=banners[ad]; 
localizador=seleccionado.lastIndexOf('.'); 
localizador2=localizador+5 
extension=seleccionado.substring(localizador+1,localizador2); 
archivo=seleccionado.substring(0,localizador); 

document.write("<center>"); 
if (extension=="swf"){ 
flash=seleccionado; 
document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width=' + width + ' height=' + height + ' CODEBASE="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0">'); 
document.write('<PARAM NAME="MOVIE" VALUE="' + flash + '">'); 
document.write('<PARAM NAME="PLAY" VALUE="true">'); 
document.write('<PARAM NAME="LOOP" VALUE="true">'); 
document.write('<PARAM NAME="QUALITY" VALUE="high">'); 
document.write('<EMBED SRC=' + flash + ' width=' + width + ' height=' + height + ' PLAY="true" LOOP="true" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash">'); 
document.write('</EMBED>'); 
document.write('</OBJECT>');} 
else {
document.write("<A HREF="+links[ad]+" target=_blank>"); 
document.write('<img src='+seleccionado+' border="0"   width='+width+' height='+height+' >' ); 
document.write('</center>');} 
// Fin 

// 