var ventanaBusqueda = null;
var fotoAux1 = new Image();


function agregar_favoritos (titulo)
{
	var url = "http://" + window.location.hostname;
	if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4))
	{
		window.external.AddFavorite (url, titulo);
	}
	else
	{ 
		if (navigator.appName == "Netscape") 
			window.alert ("Presione Crtl+D para agregar este sitio en sus Bookmarks"); 
		 	//window.external.AddFavorite(url,titulo);
	}
}
function agregar_inicio(){
	//incluye esta línea justamente al comienzo del body
	//<IE:HOMEPAGE ID="obj_pagina_inicio" />
	var url = "http://" + window.location.hostname;
	obj_pagina_inicio.style.behavior = 'url(#default#homepage)';
	obj_pagina_inicio.setHomePage (url);
}

function openWindow (url, name, w, h, scrollbars, resizable, otras)
{
	 window.open (url, name,"width=" + w + ", height=" + h + ", scrollbars=" + scrollbars + ", resizable=" + resizable + ", status=yes");
}


function verFotoFlash (urlFoto){
	openWindow ("visor.php?foto="+urlFoto, "ventanaBusqueda", 600, 520, "no", "no");
}
