// JavaScript Document
 var win = null; 
function abreFormularioC(u){ 
w=770; h=500; l=0; t=0; settings 
='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=no' 
win = window.open(u,'FORMULARIOCONTRATO',settings);
win.focus();
win.moveTo(10,10);
}
function abreFormulario(u){ 
w=505; h=280; l=20; t=20; settings 
='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=no' 
win = window.open(u,'MASINFORMACION',settings);
win.focus();
win.moveTo(20,20);
}
function abreTarjetas(mypage){ 
w=650; h=150; l=50;t=10;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes,fullscreen=no' 
  win = window.open(mypage,'TARJETAS',settings); 
}
function abreContrato(mypage){ 
w=630; h=460; l=50;t=10;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes,fullscreen=no' 
  win = window.open(mypage,'CONTRATO',settings); 
}

function abreDescuentos(mypage,myname){ 
w=700; h=350; l=50; t=50;
settings ='height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes' 
 win = window.open(mypage,myname,settings); 
} 