<!--

function showCredits() {
	window.open('/credits.php', 'enterCredits', 'width=580,height=160,location=no,scrollbars=no,status=no,menubar=no,toolbar=no,resizable=yes,titlebar=no');
}

/*function showPhoto( __imagePath )
{
	var __imageTit = __imagePath; 
	var __imagePath = 'img/gallery/big/' + __imagePath + '.jpg'; 
	var _hImage     = new Image( );

	_hImage.onerror = function( )
	{
		alert( "The image \"" + __imagePath + "\" does not exist." );
	}

	_hImage.onabort = function( )
	{
		alert( "The image \"" + __imagePath + "\" cannot be downloaded." );
	}

	_hImage.onload  = function( )
	{
		var _cx  = _hImage.width;
		var _cy  = _hImage.height;

		var _x   = (screen.width  - _cx) / 2;
		var _y   = (screen.height - _cy) / 2;

		var _wnd = window.open( "", "_blank", "width="    + _cx +
													",height="  + _cy +
													",left="    + _x +
													",top="     + _y +
													",screenX=" + _x +
													",screenY=" + _y +
													",menubar=0,toolbar=0,directories=0" +
													",resizable=0,status=0,scrollbars=0" );

		_wnd.document.open( "text/html" );

		_wnd.document.write( "<html>" );
		_wnd.document.write( "<head>" );
		_wnd.document.write( "<title>El Spa: elspa.it :: Foto " + __imageTit +"</title>" );
		_wnd.document.write( "<meta http-equiv=\"imagetoolbar\" content=\"no\" />" );
		_wnd.document.write( "<link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\"  media=\"all\" />" );
		_wnd.document.write( "</head>" );
		_wnd.document.write( "<body topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">" );
		_wnd.document.write( "<a href=\"javascript:void(0);\" onclick=\"self.close();\"><img src=\"" + __imagePath + "\" alt=\"chiudi\" title=\"chiudi\" border=\"0\" /></a>" );
		_wnd.document.write( "</body>" );
		_wnd.document.write( "</html>" );

		_wnd.document.close( );
		_wnd.focus( );
	}

	_hImage.src     = __imagePath;
}*/

//-->