function popUp(URLStr, width, height)
{
open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+'');
}

function popUp2(URLStr, width, height)
{
  open(URLStr, 'popUpWin2', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+'');
}

function popUp3(URLStr, width, height)
{
  open(URLStr, 'popUpWin3', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+'');
}

function randomHeader() {

	var myimages=new Array();

	myimages[1]="/newsite/images/head_01.jpg";
	myimages[2]="/newsite/images/head_02.jpg";
	myimages[3]="/newsite/images/head_03.jpg";
	myimages[4]="/newsite/images/head_04.jpg";
	
	var ri=Math.floor(Math.random()*myimages.length);
	if (ri==0)
		ri=1;
	
	document.getElementById("header").style.background = 'url(' + myimages[ri] + ') no-repeat center bottom';
}

function spotlightImage() {

	var myimages=new Array();

	myimages[1]="/newsite/spotlight/69_the_lovers.jpg";
	myimages[2]="/newsite/spotlight/a_loveseat_for_a_diva.jpg";
	myimages[3]="/newsite/spotlight/bagno_turco.jpg";
	myimages[4]="/newsite/spotlight/toilet_paper.jpg";
	
	var ri=Math.floor(Math.random()*myimages.length);
	if (ri==0)
		ri=1;
	
	document.getElementById("imgSpotlight").src = myimages[ri];
}

