<!--
var max=2; 
var thisBanner=1; 
var banner=new MakeBannerArray(max); 
function MakeBannerArray(n)
	{
	this.length=n;
	for (var i=1; i<=n;i++)
		{
		this[i]="";
		}
	return this;
	}	
banner[1]='<FONT FACE="Arial, Helvetica" Size="-1"><B>Dates of Polish movie posters<\/B> <BR>Year of poster print is a date of the release of the film in theaters in Poland. Usually this date was few years after original date of the film release in the country of the film<\/font>';
banner[2]='<FONT FACE="Arial, Helvetica" Size="-1"><B>Dates of Polish movie posters<\/B> <BR>Year of poster print is a date of the release of the film in theaters in Poland. Usually this date was few years after original date of the film release in the country of the film<\/font>';
banner[3]='<a href="#" target="new"><img src="buttons/black.gif" width="170" height="60" border="0" alt="animated gif banner"><\/a>';

function rand(n)
	{
	rnum=Math.floor(n*Math.random())+1
	return rnum;
	}
function setBanner()
	{
	thisBanner=rand(max);
	}		
				
//-->		

	
