var pool;
var orden;
pool=new Array("test1.gif","test2.gif");
poollink=new Array("privs.php","privs.php?cod=23","opos.php?cod=5","opos.php?cod=3","opos.php?cod=4");
orden=1;

function firstad(URL){
	
	document.ads.src=URL+"/"+pool[0];
//document.adslink.href=poollink[orden];
  if (document.links.length > 0) {
    if (document.getElementById) {
      document.getElementById('adslink').href = poollink[0];
    }
    else if (document.all) {
      document.all['adslink'].href = poollink[0];
    }
  }
	
}


function rotateads(segundos,URL){

tempId=setTimeout("changeads("+segundos+",'"+URL+"')",segundos);

}

function changeads(segundos,URL){


if (orden>pool.length-1){

	orden=0;
}

document.ads.src=URL+"/"+pool[orden];
//document.adslink.href=poollink[orden];
  if (document.links.length > 0) {
    if (document.getElementById) {
      document.getElementById('adslink').href = poollink[orden];
    }
    else if (document.all) {
      document.all['adslink'].href = poollink[orden];
    }
  }
orden++;
tempId=setTimeout("changeads("+segundos+",'"+URL+"')",segundos);

}
