<!--

//=========================================================================
//  T-I-M-O-N-E
//  Trattamenti Informatici Modulari Organizzazione News Editoriali
//
//  di Mario De Prisco
//  copyright 2004,2008 - all right reserved
//
//  TIMONE.JS - Collezione funzioni Javascript per il T-I-M-O-N-E
//-------------------------------------------------------------------------
//  2008-12-04 - IMPIANTO - bookmark
//=========================================================================


function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
};

//=========================

function MM_openBrWindow(theURL,winName,features) 
	{ //v2.0
		window.open(theURL,winName,features);
	};

function provAlert(script){
		alert(script);
	};
	
//-->
