function wopen(url,name,w,h)
{
       var centrado = (screen.width/2)-(w/2);
window.open(url,name,'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=' + w + ',height=' + h + ',top=0,left=' + centrado);
}
