Checks to see if user is logged in as Admin.
eg. If you have custom blocks on the account page that you want visible to Admins only.
if(isAdmin()){
Code to execute...
}
If you created a new block in the sys_page_compose tables than you can call this function which will display that block.
function getBlockCode_FUNCTIONNAME(){
Code to execute in block...
}