function ErrorImagen() {
if(window.event)
   window.event.srcElement.style.display = "None"
}

function NuevaVentana(documento, ancho, alto, scroll)
{        
 var TapaWindow=null;
 TapaWindow=window.open(documento,'','resizable=yes,menubar=no,location=no,toolbar=no,status=no,scrollbars=' + scroll + ',directories=no,width=' + ancho + ',height=' + alto+ ',top=200,left=200');
 if (TapaWindow){TapaWindow.focus;}
}
function sendDataToServer(idn,ori,dato)
{
$.get("/opiniones.ashx",{idn:+idn,ori:+ori,mas:+dato},function(data){$("#mas_noti").html(data);});$("#ampliar").hide("slow");}