$('#merk').createDialog({
    addr: 'index.html/ajax/merk/',
    data: {
        merk: $("#merk").attr("class")
    },
    success: handleMerk
});
function handleMerk(){
    
}

//$(".btnMoreInfo").click(function(){
//    var code = $(this).attr("rel");
//    open_pop(this);
//    alert("Sdf");
//    return false;
//});
//function open_pop(item){
//    $(item).createDialog({
//        addr: 'index.html/ajax/merk/',
//        success: function(){
//            alert(code);
//        }
//    });
//}
$(".btnMoreInfo").click(function(){
    var code = $(this).attr("rel");
    $(".btnMoreInfo").createDialog({
        addr: 'index.html/ajax/property/',
        data: {
            property: code
        },
        method:'POST',
        success: function(){
        }
    });
});
//var v = 'sdf';
