function ayudawind(pag){
 ancho=350;
 alto=480;
 izq=(screen.availWidth-10-ancho)/2;
 sup=(screen.availHeight-50-alto)/2;
 ayuda=window.open(pag,"vayuda","width="+ancho+",height="+alto+",resizable=yes,status=yes,scrollbars=yes");
 ayuda.moveTo(izq,sup);
 ayuda.focus();
 }

