﻿jQuery(function () {
    $.validator.addMethod('cpf', function (value) { return isValidCpf(value.replace(/\./g, "").replace("-", "")) });
    $("form").validate({ highlight: function (element, errorClass) {
        $(element).addClass('error');
        $(element).closest("li.question").addClass('error');
    }, unhighlight: function (element, errorClass) {
        $(element).removeClass('error');
        $(element).closest("li.question").removeClass('error');
    }
    });
});


function AjustaImagem(id, imagem) {
    var w = Math.round($(id).width());
    var h = Math.round($(id).height());  
    $(id).attr("src", 'http://admin.webplus.com.br/public/images/Crop.ashx?img=' + imagem + '&w=' + w + '&h=' + h);
}

function imprimir(id) {
    var mywindow = window.open('', '', 'height=400,width=600');
    mywindow.document.write('<html><head><title></title>');
    mywindow.document.write('</head><body >');    
    mywindow.document.write('</body></html>');
    $(mywindow.document).append($(id).clone());    
    mywindow.document.close();
    mywindow.print();
    return true;
}



