<!--
function randban()
{
//create an array of add images
 var i = new Array(new Image(1000,130), new Image(1000,130), new Image(1000,130));
 i[0].src="../pn/themes/PNCarnage/images/carnage08lang.jpg";
 i[1].src="../pn/themes/PNCarnage/images/carnage08gore.jpg";
 i[2].src="../pn/themes/PNCarnage/images/carnage08sasette.jpg";

//get a random number between 0 and the number of adds available
 var pictnum=Math.round(Math.random()*3)-1;
 while(pictnum<0 || pictnum>3) pictnum=Math.round(Math.random()*3)-1;

//change the banner picture
 document.banner.src=i[pictnum].src;

}
//-->