
  function openWindow(URL){
     popup =   open(URL,"pop","width=600,height=350,scrollbars=1");
     popup.focus()
}

function  returnHome(URL){

       if (opener) {
       opener.location.href=URL;
       opener.focus();
       this.close();
       }else{ location.href="frame1.htm#" + URL;}

       }


