function header()	// Prima tabella con loghi CONI/FIDAL e intestazione -->
{
	document.write( '<table width=800px align=center border=1 style="align:center; text-align:center"><tr>');
	document.write( '<td width=10%><a href="http://www.coni.it"><img src="logos/coni logo quadrato 2.gif" title="CONI Italia" border=0 width=50 height=50></a>     </td>');
	document.write( '<td width=76%><div class=boldfont style="width:100%; filter:glow(color=black,strength=10);" title="by The Hangman">ATLETICA CARPENEDOLO<font size=-3>©</font><br><font size=+1>dal 1984</div>');
	document.write( '<td width=10%><a href="http://www.fidal-lombardia.it"><img src="logos/fidal logo.jpg" title="FIDAL Lombardia" border=0 width=50 height=50> </a>    </td>');
	document.write( '</table>');
//	document.write( '<td width=78% align=center><span class=boldfont style="width:100%;	filter:glow(color=black,strength=50);">ATLETICA CARPENEDOLO<font size=1>©</font><br><font size=2>dal 1984</span>');
}

function width()										//	Total window width
{
	var x = 0;
	if( typeof( window.innerWidth ) == 'number' )			//	Non-IE
		x = window.innerWidth;
	else												//	IE 6+ in 'standards compliant mode'
	if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
		x = document.documentElement.clientWidth;
	else												//	IE 4 compatible
	if ( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
		x = document.body.clientWidth;
	return x;
}
function height()										//	Total window height
{
	var y = 0;
	if( typeof( window.innerHeight ) == 'number' )		//	Non-IE
		y = window.innerHeight;
	else												//	IE 6+ in 'standards compliant mode'
	if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
		y = document.documentElement.clientHeight;
	else												//	IE 4 compatible
	if ( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
		y = document.body.clientHeight;
	return y;
}
