// JavaScript Document

pic_width=468;  
pic_height=60;  
border_size=1;   
alignment=1;  

if (document.images)
 {
     pic1= new Image(pic_width,pic_height);
     pic1.src="http://www.tvellef.nl/ads/banner01.jpg";  
     pic2= new Image(pic_width,pic_height); 
     pic2.src="http://www.tvellef.nl/ads/banner02.jpg";
 }    

urlad1="http://www.tvellef.nl/peterbrouwersclickout.html";
urlad2="http://www.tvellef.nl/waterbeddenspecialistclickout.html";

if (alignment==1)
 {
  cent_it="<CENTER>";
  cent_it2="<\/CENTER>";
 }
else
 {
  cent_it="";
  cent_it2="";
 }
 
function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}
function get_Image()
{
 if (document.images)
 {
  var choose_one= get_random(2);  
  choose_one--;

  var pics= new Array(2) 
   pics[0]=pic1.src;
   pics[1]=pic2.src;

  var aurl= new Array(2)
  aurl[0]=urlad1;
  aurl[1]=urlad2;

  document.write(cent_it+"<A HREF='"+aurl[choose_one]+"' target='blank'><IMG SRC='"+pics[choose_one]+"' width='"+pic_width+"' height='"+pic_height+"' border='"+border_size+"'></A>"+cent_it2);
 }
}