/**********************************************************************

	Javascript Modificato da Maurizio Masala
	Visualizzazione di un messaggio di default sulla status bar
	Se si passa sopra un link, verra' aggiunto un ulteriore
	messaggio a quello di default


	defaultstatus 
						indica il messaggio predefinito 
						nella status bar.

	say
						Indica il messaggio che si
						aggiungera' al default

	es. 1
		D E N T O S A N { messaggio default}

	es. 2
		D E N T O S A N - Contattaci
			{messaggio di default + passaggio mouse sopra link}

	Da Mettere nell'HREF

	OnMouseOver="writeme('Testo_Nella_Status_Bar');return true" onmouseout="wdef()"

**********************************************************************/

defaultStatus = "Associazione Culturale Black Dahlia"
function writeme(say, p){
			if ( p==1) self.status="Live the Art - Spread the Craft - Feel the Music" + say;
			else self.status="Live the Art - Spread the Craft - Feel the Music" + say + "Global Promotion for Art Movements";
				}

function wdef(text){
defaultStatus=" Associazione Culturale Black Dahlia "
			}