function showApp(app_id){
    var divId = "main_content";
    window.location.href = "display_resource.php";
    
    if(app_id == "23045"){
        document.getElementById(divId).innerHTML = "This is new adminstration";
    }
    else{
        document.getElementById(divId).innerHTML= "This is everything else";
    }
    
}
