// Hacer Página de Inicio
function inicio() 
{ 
	var ident = navigator.userAgent.toLowerCase();
	//SE VERIFICA QUE EL NAVEGADOR SEA EL EXPLORER
	if (ident.indexOf("msie") != -1){		
		pag_inicio_tib.style.behavior='url(#default#homepage)'; 
		pag_inicio_tib.setHomePage("http://www.estimesa.com"); 
	}else{
		//SINO ES EXPLORER
		//Vinculo donde se describen los pasos para hacer pág. de inicio cuando NO ES IE
		document.location="paginadeinicio.php";
	}
} 

// Añadir a Favoritos
var url="http://www.esmefar.com" 
var title="ESMEFAR - Especialistas en Estudios del Mercado Farmacéutico"
	function favoritos(){
	var ident = navigator.userAgent.toLowerCase();
		
		if (window.sidebar) { 
			window.sidebar.addPanel(title, url,""); 
		} 	
		if (ident.indexOf("msie") != -1){		
			window.external.AddFavorite( url, title); 
			if (ident.indexOf("opera") != -1){
				//if( window.opera && window.print ) { 
				alert ("PRESIONE CTRL + T PARA AÑADIR A MARCADORES");
				//return true; 
			}
		} 
		if (ident.indexOf("opera") != -1){
			//if( window.opera && window.print ) { 
			alert ("PRESIONE CTRL + T PARA AÑADIR A MARCADORES");
			//return true; 
		}
	
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
