// computerprice.it last update 07/03/2007



//     end content address section - start

function indirizzo(){
  with (document){
writeln('<address>');
writeln('<span id="info"><b>Computerprice.it snc</b> - Assistenza tecnica e vendita hardware e software</span><br />');
writeln('Via Dante 35 - 20041 Agrate B. (MI) / Tel. 0396893061 Fax 0396895863 &nbsp;&nbsp;P.IVA 04624960961');
writeln('</address>');
  }
}

//     end content address section - end



// Last update section - start

	function last(){
	with (document){
	var months = new Array("gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre");

	modDate = new Date(document.lastModified);
	d = modDate.getDate();
	dd = (d<10) ? "0"+d : d;
	m = modDate.getMonth();
	yy = modDate.getYear();

	while(yy<2000)
		yy = yy + 100;


		writeln('<div id="update">');
		writeln("Ultimo aggiornamento: " + d + " " + months[m] + " " + yy + "<br>");
		writeln('</div>');
	}
}

// Last update section - end
