function openwindow(theURL,winName,features) { //1.0 , NHT-NORWICK

var empieza_ancho=parseInt(features.indexOf("width="));  
if (empieza_ancho != -1){
   var acaba_ancho=parseInt(features.indexOf(",",empieza_ancho));
   if (acaba_ancho == -1 ) acaba_ancho=features.length;             
   var pos_izq=parseInt((screen.width - features.substr(empieza_ancho+6,acaba_ancho - (empieza_ancho + 6))) / 2) ;
   if (features.indexOf("left=") == -1 && pos_izq >= 0 ) features+=",left=" + pos_izq ;
}

var empieza_alto=parseInt(features.indexOf("height="));  
if (empieza_alto != -1){
   var acaba_alto=parseInt(features.indexOf(",",empieza_alto));
   if (acaba_alto == -1 ) acaba_alto=features.length;             
   var pos_sup=parseInt((screen.height - features.substr(empieza_alto+7,acaba_alto - (empieza_alto + 7))) / 2) ;
   if (features.indexOf("top=") == -1 && pos_sup >= 0 ) features+=",top=" + pos_sup ;
}
if (features.indexOf("scrollbars") == -1) features+=",scrollbars=no";
window.open(theURL,winName,features);
}
