function vent(pagina,nombre,w,h,parametros){
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  ajustes = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+','+parametros+''
  ventana = window.open(pagina,nombre,ajustes);
  ventana.focus();
}


function redireccionar(formulario,checkbox,_url){
       if (eval('window.document.'+formulario+'.'+checkbox+'.checked')){
          valor=1; // RECORDAR
       }else{valor=2;} // NO RECORDAR
       top.location.href=_url + '?t='+valor; 
}  

function valorcheckbox(objetocheckbox){
       return objetocheckbox.checked;
}

function LimitAttach(form, file) {
	if (!file) {
          alert("Debe seleccionar un archivo");
          return;
        }
	form.submit();
}

function Validar_Registrarse(form)
{
  form.submit();
}

function Validar_Remember(form)
{
  form.submit();
}


