function gotosite(url){
   if((top.website == null) || (top.website.closed)){
      top.website = open(url,"website","width=780,height=490,toolbar,resizable,scrollbars=yes,status,titlebar,menubar,location");
   }else{
      top.website.location = url;
   }
   top.website.focus();
}

function killwindow(){
   if((top.website != null) && !(top.website.closed)){
      top.website.close();
   }
}

function openwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}