function setPreferido(file){
  var xmlObj = null;
  
  if(window.XMLHttpRequest){
      xmlObj = new XMLHttpRequest();
  } else if(window.ActiveXObject){
      xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
  } else {
      return;
  }

	xmlObj.open ('GET', file, true);
    xmlObj.send ('');

    return false;
  }
 

function validar_campos_requeridos_seleccion() {
		error_msg = '';
		if (document.enviar_seleccion.email.value=='') {
			error_msg = error_msg + '\n Ingrese una dirección de E-mail.';
		}
		
		if (error_msg != '') {
			error_msg = 'Debe completar los datos para enviar el mensaje:' + error_msg;
			alert(error_msg);
			return false;
		}
		return true;
 }

 function mostrarhora(){
 <!--  to hide script contents from old browsers

var now = new Date()
var tempDate = now.getMonth()
var tempDay = now.getDay()
var Month=""
var Day=""

if (tempDate == 0) {Month = "Enero "};
if (tempDate == 1) {Month = "Febrero "};
if (tempDate == 2) {Month = "Marzo "};
if (tempDate == 3) {Month = "Abril "};
if (tempDate == 4) {Month = "Mayo "};
if (tempDate == 5) {Month = "Junio "};
if (tempDate == 6) {Month = "Julio "};
if (tempDate == 7) {Month = "Agosto "};
if (tempDate == 8) {Month = "Septiembre "};
if (tempDate == 9) {Month = "Octubre "};
if (tempDate == 10) {Month = "Noviembre "};
if (tempDate == 11) {Month = "Deciembre "};

if (tempDay == 0) {Day = "Domingo "};
if (tempDay == 1) {Day = "Lunes "};
if (tempDay == 2) {Day = "Martes "};
if (tempDay == 3) {Day = "Miércoles "};
if (tempDay == 4) {Day = "Jueves "};
if (tempDay == 5) {Day = "Viernes "};
if (tempDay == 6) {Day = "Sábado "};

document.write(Day+Month+now.getDate()+', 2006')

// end hiding contents from old browsers  -->
 }