//Servidor Central

var DR_SERVER = 'http://www.estrellaiquique.cl';
//var CENTRAL_SERVER = 'http://192.168.6.55';
var CENTRAL_SERVER = 'http://portada.diariosregionales.cl';

//alert('host:'+window.location.host);
//alert('host:'+window.location.);

//Genera edicion correspondiente al dia actual.
var currentTime = new Date();
var month = currentTime.getMonth() + 1;
if  ( month <= 9 ){
    var monthT = '0'+ month;
    month = monthT;
};
var day = currentTime.getDate();
if  ( day <= 9 ){
    var dayT = '0'+ day;
    day = dayT;
};
var year = currentTime.getFullYear();
var EDICION_DIA = year +'_'+ month +'_'+ day + '_1';

var headInf = '<!--botonera-->';
headInf += '<div class="botonera">';
headInf += '<div class="boton"><a href="http://www.estrellaiquique.cl/" target="_parent">INICIO</a></div>';
headInf += '<div class="boton"><a href="'+CENTRAL_SERVER+'/prontus_multimedia/site/edic/base/port/fotos_estrellaiquique.html" target="_parent">FOTOS</a></div>';
headInf += '<div class="boton"><a href="'+CENTRAL_SERVER+'/prontus_multimedia/site/edic/base/port/videos_estrellaiquique.html" target="_parent">VIDEOS</a></div>';
headInf += '<div class="boton"><a href="http://www.meteochile.cl" target="_parent">EL TIEMPO</a></div>';
headInf += '<div class="boton2"><a href="http://www.mediosregionales.cl" target="_parent">MEDIOS REGIONALES</a></div>';
headInf += '<div class="boton2"><a href="http://prontus.mediosregionales.cl/club_iquique" target="_parent">CLUB DE LECTORES</a></div>';
headInf += '<div class="boton2"><a href="http://prontus.mediosregionales.cl/norteminero" target="_parent">NORTE MINERO</a></div>';
headInf += '<div class="boton"><a href="http://www.regiontv.cl" target="_parent">REGION TV</a></div>';
headInf += '<div class="boton"><a href="http://portada.diariosregionales.cl/prontus_form/site/artic/20081219/pags/20081219115153.html" target="_parent">CONTACTO</a></div>';
headInf += '</div>';
headInf += '<!--/botonera-->';
writeHeadInf(headInf);


