<!--

Num=Math.floor (Math.random()*6);

function prob_banner(indX) {
      banner = new Array(0,1,2,3,4,5);
      return banner[indX];
   }

function p_banner(indX)  {
      muestra_banner = new Array ( 
'<a href="http://www.huelvacofrade.com/prioste/2012/02/02f.htm"><img src="http://www.huelvacofrade.com/fotoportada/301.jpg" width="222" height="333" border="0"></a>',
'<a href="http://www.huelvacofrade.com/fotografias/2012/sansebastian/index.htm"><img src="http://www.huelvacofrade.com/fotoportada/298.jpg" width="222" height="333" border="0"></a>',
'<a href="http://www.huelvacofrade.com/prioste/2012/01/28v.htm"><img src="http://www.huelvacofrade.com/fotoportada/300.jpg" width="222" height="333" border="0"></a>',
'<a href="http://www.huelvacofrade.com/prioste/2012/01/28v.htm"><img src="http://www.huelvacofrade.com/fotoportada/300.jpg" width="222" height="333" border="0"></a>',
'<a href="http://www.huelvacofrade.com/fotografias/2012/sansebastian/index.htm"><img src="http://www.huelvacofrade.com/fotoportada/299.jpg" width="222" height="333" border="0"></a>',
'<a href="http://www.huelvacofrade.com/prioste/2012/02/02f.htm"><img src="http://www.huelvacofrade.com/fotoportada/301.jpg" width="222" height="333" border="0"></a>');

      return muestra_banner[indX];
}

function banner()   {
     document.writeln("<center>");
     document.write(p_banner(prob_banner(Num)));
     document.writeln("</center>");
}

//-->
