<!--

function op(URL,name){
var w = 400;
var h = 200;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
//winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0, menubar=false,menu=false, scrollbars'

window.open(URL,name,'top='+wint+',left='+winl+',resizable=false,menubar=false,scrollbars=0,height=' + h + ',width=' + w + ',menu=false');
}
function op2(URL, width, height,name){
	 var w = width;
	 var h = height;
	 var winl = (screen.width - w) / 2;
     var wint = (screen.height - h) / 2;
     //winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0'

window.open(URL,name,'top='+wint+',left='+winl+',resizable=false,menubar=false,scrollbars=0,height=' + height + ',width=' + width + ',menu=false');
}
function op3(URL, width, height,name){

  //   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0'

window.open(URL,name,'resizable=false,menubar=false,scrollbars=0,height=' + height + ',width=' + width + ',menu=false');
}
//Se pasa el link a la acción a confirmar por un lado, y el mensaje de confirmación por otro
function confirmLink(theLink, Pregunta){
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
//    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
//        return true;
//    }

    var is_confirmed = confirm(Pregunta);
    if (is_confirmed) {
        theLink.href += '&DEL=1';
    }

    return is_confirmed;
} // end of the 'confirmLink()' function
//-->
function op4(URL, width, height,name){
	 var w = width;
	 var h = height;
	 var winl = (screen.width - w) / 2;
     var wint = (screen.height - h) / 2;
     //winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0'

window.open(URL,name,'top='+wint+',left='+winl+',resizable=true,menubar=false,scrollbars=1,height=' + height + ',width=' + width + ',menu=false');
}

