function imprimir() {
    if (window.print) {
        window.print();
    }
    else {
        alert("Disculpe, su navegador no soporta esta opci&oacute;n.");
    }
}

function nirvana_positionWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="self.close()" style="cursor:hand">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function fPopupPrint(pUrl) { 
 window.open(pUrl,"wAbrePopup", "width=550,height=425,menubar=no,directories=no,status=no,toolbar=no,scrollbars=yes,resizable=no"); 
  	       
   	      
}

function fMuestraNoticias()
 
 {
  var DatosNoticiasHidden = document.getElementById("DatosNoticiasHidden"); 
 
  if (DatosNoticiasHidden.style.display == "none") 
   {
    DatosNoticiasHidden.style.display = "inline"; 
   }	  
  else
   {
    DatosNoticiasHidden.style.display = "none"; 
   }
 }

function Volver()
{
  document.location.href = document.referrer;
}

function over(obj, color) {
    var tr = document.getElementById(obj);
    if (tr) {
        tr.style.background = color;
    }
}
    






