<!-----------------------------------
function gototop1(pg){
  temp="";
  for (i=1;i<=pg;i++){
    temp=temp+"../"
  }
  if( parent.frames.length == 0 ){
    window.location= temp + "index.htm";
  }
}

function gototop2(pg){
  temp="";
  for (i=1;i<=pg;i++){
    temp=temp+"../"
  }
  if( parent.frames.length == 0 ){
    window.location= temp + "index.htm";
  }else{
    location.href= temp + "main/begin.html";
  }
}
//------------------------------------>
