    function getto(form, i) {
      var site = form.elements[i].selectedIndex;
      if ( site >= 0 ) {
        top.location = form.elements[i].options[site].value;
      }
    }


 function Fullsize(adress, iwidth, iheight) {
    var newurl = '' + adress;
    var params = 'toolbars=0, scrollbars=0, location=0, statusbars=0, ' +
                 'width=' + iwidth+ ', height=' + iheight
                 + ' menubars=0, resizable=0, left=0, top=0';
    newwindow=window.open(newurl, 'fullimg', params);
 }

 
   function toggle(id){
     if (document.getElementById){
       var el = document.getElementById(id);
       el.style.display = (el.style.display == 'none') ? 'block' : 'none';
     }
   }

   window.onload = function(){
   }

   function Fullsize(adress, iwidth, iheight) {
     var newurl = '' + adress;
     var params = 'toolbars=0, scrollbars=0, location=0, statusbars=0, ' +
                  'width=' + iwidth+ ', height=' + iheight
                  + ' menubars=0, resizable=0, left=0, top=0';
     newwindow=window.open(newurl, 'fullimg', params);
   }

