<!-- 
	var bookmarkurl="http://www.ilbaluardo.com"
	var bookmarktitle="Il Baluardo ...l'ultima risorsa della Grande Rete!"

	function addbookmark(){
		if (document.all)
			window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}

	var scrtxt="Il Baluardo ...l'ultima risorsa della Grande Rete! Musica (Gemboy, goliardica, sigle cartoni animati, colonne sonore), manga (immagini, video, curiosità), recensioni (hardware e software), copertine cd (audio, pc cd-rom, psx), giochi (old games, emulatori e rom, soluzioni), link... e molto altro!";
	var lentxt=scrtxt.length;
	var width=100;
	var pos=1-width;

	function scorrevole() {
		pos++;
		var scroller="";
		if (pos==lentxt) {
			pos=1-width;
		}
		if (pos<0) {
			for (var i=1; i<=Math.abs(pos); i++) {
			scroller=scroller+" ";}
			scroller=scroller+scrtxt.substring(0,width-i+1);
		}
		else {
			scroller=scroller+scrtxt.substring(pos,width+pos);
		}
		window.status = scroller;
		setTimeout("scorrevole()",60);
	}

	function popup(url, larghezza, altezza) { 
		if(url) window.open(url, '', 'width=' + larghezza + ',height=' + altezza + ',top=10,left=10'); 
	}

//-->