function othwin1(){window.open("map.html","window1","width=620,height=380,scrollbars=0")}


function GoHistory(count, isForward) {
    if (isForward == 0) {
        history.go(-(count));
        return;
    }
    if (isForward == 1) {
        history.go(count);
        return;
    }
}

   function closewin(){
            self.close();
   }
