<!-- 
/*

	" RandomBannerCode " write by Frapa in June 1999
	All right reserved - no copy allowed!
	fra@rvsnet.it

*/

	function banner(){

	var a;
	a = 1+Math.round(Math.random()*3);

	if (a==1) document.write("<img src='pics/splash01.jpg' width='500' height='500'>");
	if (a==2) document.write("<img src='pics/splash02.jpg' width='500' height='500'>");
	if (a==3) document.write("<img src='pics/splash03.jpg' width='500' height='500'>");
	if (a==4) document.write("<img src='pics/splash04.jpg' width='500' height='500'>");
	}

    banner();


//-->

