// This function makes sure that the content page is being shown inside the main frame
function framecheck() {
  var parentframe = '/index.htm';
  if (parent.location.href == self.location.href) {
    var current = window.self.location.pathname;
    window.location.replace (parentframe + '?' + current);
  }
  defstatus();
}

function defstatus() //Display Default Status Message
{
  window.status="Milestone Mediaworks Home";
  return true;
}

