function abrirBetatester(){

 $('#formBeta').toggle();
 	
}
 
function submitReportBug(){
	
	var reportemsj = $("#descripcion").val();
 	var conf = $("#configuracion").val();
	var prio = $("#prio").val();
	
 	    $.post("http://www.nb.com.ar/procesar/enviarReporte.php", {
        reportemsjVar: reportemsj, confVar: conf, prioVar: prio
        //FALTA EL N DE CARRITO
        }, function(data) {
        $("#formBeta").html(data);
        });
        
        //$('#formBeta').toggle();
}

