function changePageText(div2show, text) {
$("#" +div2show).html(text);
window.location = "#thewebsite";
}


function getpage(username,detail,pagenumber) {
u = username;
d = detail;
p = pagenumber;

changePageText("website",'<div id="pagedata"><div style="margin-bottom:600px;height:30px;" class="alert">If this members page did not load, <a href="profile.php?'+ u + '&detail='+ d + '&page=' + p +  '#wjump">click here</a></div></div>');

$.post("/ajax/thewebsite.php", { username: username, detail: detail, pagenumber: pagenumber},
  function(data){
  	    update = data.split('||');


/*            changePageText(update[0], update[1]);*/
            changePageText("pagedata", update[1]);
            changePageText(update[2], update[3]);

   });

}

