function CreateBookmarkLink(strTitle, strLink) {

	strVersion = navigator.appVersion;
	strVersion = strVersion.toLowerCase();

	if( document.all ) { // IE Favorite
		window.external.AddFavorite( strLink, strTitle); 
	} else if (window.sidebar  && strVersion.indexOf('safari') == -1 ) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(strTitle, strLink,"");
	}
	else { // Opera Hotlist
		alert('Para agregar a favoritos, has click en Marcadores | Agergar Marcador o presiona Ctrl+D.' );
	}
}
