function addfav(title,url) {
	if (document.all)
		window.external.AddFavorite(url,title)
  else if (window.sidebar)
		window.sidebar.addPanel(title, url, "")
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// attivazione flash
function activateObject( objName ) {
	var codeHtml = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=7,0,19,0" width="500" height="292">';
	codeHtml = codeHtml + '<param name="movie" value="'+ objName +'"><param name="quality" value="high"><param name="wmode" value="transparent">';
	codeHtml = codeHtml + '<embed src="'+ objName +'" width="500" height="292" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>';
	document.getElementById("objContainer").innerHTML = codeHtml;
}