/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */



function show_contact(id){
// alert(id);
    if(id == 'partners' || id == 'associates'){
        document.getElementById('contact_data').innerHTML = '';
        return false;
    }
    var url = '../index.php';
    var params = 'action=get_contact&id='+id+'&showclose=false';
    $.ajax({
            type: 'GET',
            url: url,
            data: params,
            success: function(html){
                    // alert(html)
                    document.getElementById('contact_data').innerHTML = html;
            },
            failure: function(){
                            // alert('Something went wrong...')
            }
    });
}// end function

