	function show_div(div_id) {
    // hide all the divs
    document.getElementById('myprofile').style.display = "none";
    document.getElementById('myproperties').style.display = "none";
 
    // show the requested div
    document.getElementById(div_id).style.display = 'block';
	
}
