function getStyleObject(objectId) {
  if(document.getElementById && document.getElementById(objectId)) {
    return document.getElementById(objectId).style;
   }
   else if (document.all && document.all(objectId)) {
    return document.all(objectId).style;
   }
   else if (document.layers && document.layers[objectId]) {
    return document.layers[objectId];
   } else {
    return false;
   }
}

function informe () {
	window.open('informe.php','Informe','scrollbars=yes,menubar=no,height=600,width=600,resizable=yes,toolbar=no,location=no,status=no');
}

function ayuda () {
	window.open('ayuda.php','Ayuda','scrollbars=yes,menubar=no,height=600,width=600,resizable=yes,toolbar=no,location=no,status=no');
}
