// BreakOut function
<!--
function BreakOut(page) {
  BlnkChk=/^[\s]+$/;
  if (this.name != "Working") {
    if ( page == "" || BlnkChk.test(page) ) {
      page = 'Profile';
    }
    top.location.href = "index.html?page="+page;
  }
}
 -->

