function borraMsg(obj)
{
	document.getElementById(obj).style.display = 'none';
}


//Dibuja un flash
function incluirFlash(x,y,file,contId)
{
	var so = new SWFObject(file, contId, x,y, '8','');
	so.addParam('scale', 'noscale');
	so.addParam("wmode", "opaque");
	so.addParam('menu', 'false');
	so.write(contId);
}

//Mostrar mensaje
function muestraMsg(obj)
{
	var opciones = "fullscreen=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=500,height=450,left=100,top=20";
	var ventana = window.open("pop-msg.php?msg=" + obj,"Descarga",opciones,1); 
	return false;
}
//Mostrar mensaje
function muestraFoto(obj)
{
	document.getElementById(obj).style.display = '';
	//si el navegador es IE
	if(navigator.appName.indexOf("Explorer") != -1)
	{
		document.getElementById(obj).style.position = 'absolute';
	}
	else
	{
		document.getElementById('dvFondo').style.display = '';
	}
}
