function getObject(name) {
   var ns4 = (document.layers) ? true : false;
   var w3c = (document.getElementById) ? true : false;
   var ie4 = (document.all) ? true : false;
   if (ns4) return eval('document.' + name);
   if (w3c) return document.getElementById(name);
   if (ie4) return eval('document.all.' + name);
   return false;
}

function popitup(url, height, width) {
    window.open(url,'name','scrollbars=yes,resizable=yes,height='+height+',width='+width+'');
    return false;
}

// es igual a la otra pero pambian unas cositas
function popitup_enviar(url, height, width) {
    window.open(url,'name','scrollbars=no,resizable=no,statusbar=no,height='+height+',width='+width+'');
    return false;
}

