<!-- hide

   function preload(name, first, second, clic) {  
  // preload images and place them in an array

    if (browserOK) {     
	if ( pics[name] == null) {
             pics[name] = new Array(3);
	     pics[name][0] = new Image();pics[name][0].src = first;
	     pics[name][1] = new Image();pics[name][1].src = second;
	     pics[name][2] = new Image();pics[name][2].src = clic;
        }
      }
   }
   function on(name,fraref,tyx){
     if (browserOK) {
        if ( objref != name) {
	  fraref.document.images[name].src = pics[name][tyx].src;
        }
     }
   }
   function up(name,fraref){
     if (browserOK) {
	if (ofraref != null) {
           if (objref != "") {
              if (ofraref.document.images[objref] != null) {
		  ofraref.document.images[objref].src = pics[objref][0].src;
              }
           }
        }
        objref=name;ofraref=fraref;
        if (fraref.document.images[objref] != null) {
          // show the second image because cursor moves across this image
	  fraref.document.images[objref].src = pics[objref][2].src;
        }
      }
    }
    function setobjref(obj,fraref){
            objref=obj;
            ofraref=fraref;
    }
    function view(url,width,height,aut) {
       if (aut =="") {
          aut=",scrollbars=yes";
       }
       windowC=window.open(url,"news","toolbar=no,width=" + width + ",height=" +
 height + aut);
       windowC.focus();
    }

// -->
