<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var img_name = new Array(
 "picts/head-1.gif", 
 "picts/head-2.gif", 
 "picts/head-3.gif", 
 "picts/head-4.gif", 
 "picts/head-5.gif", 
 "picts/head-6.gif", 
 "picts/head-7.gif", 
 "picts/head-8.gif", 
 "picts/head-9.gif", 
 "picts/head-10.gif", 
 "picts/head-11.gif", 
 "picts/head-12.gif", 
 "picts/head-13.gif", 
 "picts/head-14.gif", 
 "picts/head-15.gif",
 "picts/head-16.gif", 
 "picts/head-17.gif", 
 "picts/head-18.gif", 
 "picts/head-19.gif", 
 "picts/head-20.gif", 
 "picts/head-21.gif", 
 "picts/head-22.gif", 
 "picts/head-23.gif",
 "picts/head-24.gif", 
 "picts/head-25.gif", 
 "picts/head-26.gif", 
 "picts/head-27.gif", 
 "picts/head-28.gif", 
 "picts/head-29.gif", 
 "picts/head-30.gif");

var arr_length = img_name.length;

var rnd_no = Math.floor(arr_length*Math.random());

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%">');
document.write('<tr> <td background="'+img_name[rnd_no]+'">');
document.write('<IMG SRC="picts/spacer.gif" border="0" width="700" height="125" alt="image"><br></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td bgcolor="#666699" background="picts/bluebar.gif" colspan="2">');
document.write('<IMG SRC="picts/spacer.gif" border="0" width="15" height="26" alt="image"><br></td>');
document.write('</tr></table>');

//  End -->
