/**
*	@author: Stefano Gioia (Stefano.Gioia@tei.ericsson.se)	
*	@Date: 28-03-2002
*	@Version: 1.0
*/


/**
* 	A simple Date function
*/

function showDate()
{
	var d=new Date()
	var weekday=new Array("domenica","luned&igrave;","marted&igrave;","mercoled&igrave;","gioved&igrave;","venerd&igrave;","sabato")
	var monthname=new Array("gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre")
	document.write(weekday[d.getDay()] + " ")
	document.write(d.getDate() + ", ")
	document.write(monthname[d.getMonth()] + " ")
	document.write(d.getFullYear())
}


/** 
* Generate a random image
*/
function randomImage()
{
	images = new Array(4);
	images[0] = "<img src='img/photo/home_rock.jpg' width='732' height='204'>";
	images[1] = "<img src='img/photo/home_tourist.jpg' width='732' height='204'>";
	images[2] = "<img src='img/photo/home_throttle.jpg' width='732' height='204'>";
	images[3] = "<img src='img/photo/home_bomb.jpg' width='732' height='204'>";
	images[3] = "<img src='img/photo/home_river.jpg' width='732' height='204'>";
	index = Math.floor(Math.random() * images.length);
	document.write(  images[index] );
}


function apriFinestra( nomeImmagine )
{
 var nomeCompleto = "/showImage.jsp?image=" + nomeImmagine;
 window.open( nomeCompleto, "gioste", "width=500, height=470, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no");
}





