function setFrame(aMenu,aContent,aType)
{
  if(aType == "TOP")
  {
    self.Frame_Menu.location.href    = aMenu;
    self.Frame_Content.location.href = aContent;
  }
  else if(aType == "SUB")
  {
    parent.Frame_Menu.location.href    = aMenu;
    parent.Frame_Content.location.href = aContent;
  }
}

function setMenu(aMenu,aType)       
{ 
       if(aType == "TOP")  {   self.Frame_Menu.location.href = aMenu; }
  else if(aType == "SUB")  { parent.Frame_Menu.location.href = aMenu; } 
}
function setContent(aContent,aType) 
{ 
       if(aType == "TOP")  {   self.Frame_Content.location.href = aContent; }
  else if(aType == "SUB")  { parent.Frame_Content.location.href = aContent; }
}

function openWindow(aLink)
{
  var tWindow = window.open(aLink,"","");
}