var ventanaPropiedades=false;
function PopNoticias(){
	var fecha = new Date();
	var mes = fecha.getMonth();
	var dia = fecha.getDate();
	// Abrir ventana de publicidad sólo si se está en el mes de marzo
	if (mes==2){
  //funcion para abrir una ventana con propiedades.
    if (typeof ventanaPropiedades.document == "object") {
       ventanaPropiedades.close()
    }
     ventanaPropiedades = window.open("nuevoreporte.php","propiedades","width=318,height=215,left=600,top=200,scrollbars=no,menubars=no,statusbar=NO,status=NO,resizable=NO,location=NO")
	} else if (mes==3){
	  if (dia==1){
      if (typeof ventanaPropiedades.document == "object") {
         ventanaPropiedades.close()
      }
       ventanaPropiedades = window.open("nuevoreporte1.php","propiedades","width=318,height=215,left=600,top=200,scrollbars=no,menubars=no,statusbar=NO,status=NO,resizable=NO,location=NO")
		} else {
      if (typeof ventanaPropiedades.document == "object") {
         ventanaPropiedades.close()
      }
       ventanaPropiedades = window.open("nuevoreporte2.php","propiedades","width=318,height=215,left=600,top=200,scrollbars=no,menubars=no,statusbar=NO,status=NO,resizable=NO,location=NO")
		}	 
	} 
}		