<!-- 
/*

	" RandomBannerCode " write by Frapa in June 1999
	All right reserved - no copy allowed!
	fra@rvsnet.it

*/

	function banner(){

	document.write("<td width='148' rowspan='2' valign='top' background='");


	var a;
	a = 1+Math.round(Math.random()*5);

	if (a==1) document.write("pics/side01.jpg");
	if (a==2) document.write("pics/side02.jpg");
	if (a==3) document.write("pics/side03.jpg");
	if (a==4) document.write("pics/side04.jpg");
	if (a==5) document.write("pics/side05.jpg");
	if (a==6) document.write("pics/side06.jpg");


	document.write("'>");

	}


    banner();


//-->

