
//******************************************************************************
//
// Copyright 1998-2002 by Kuru
// All Rights Reserved
// http://www.kuru.com
//
// This program may not be redistributed, in any form, without our consent.
// It may not be archived or otherwise stored in any form.  All you can
// do with it is load it into your browser.
//
// We assert copyright over every last bit of text, program, and image
// here.  Read:
//	http://www.kuru.com/copyright.html
// for a longer assertion of our copyright and an explanation of the
// rights we assert.
//
//
// You are reading a file which has been modified to speed up loading.
// This process has rendered it largely unreadable by humans.
//
//******************************************************************************

 function turn_button_on( button_name) { if(document.images != null && button_name != null && button_name != "" && document[button_name] != null && button_urls[button_name] != null && button_urls[button_name].on != null) { document[button_name].src = button_urls[button_name].on; } } function turn_button_off( button_name) { if(document.images != null && button_name != null && button_name != "" && document[button_name] != null && button_urls[button_name] != null && button_urls[button_name].off != null) { document[button_name].src = button_urls[button_name].off; } } function create_rollover( button_name, button_path_off, button_path_on) { var url_image_button_on; var url_image_button_off; var url_prefix; if(document.images != null) { button_urls[button_name] = new Object; url_prefix = "http://" + site_address + "/"; url_image_button_on = url_prefix + button_path_on; url_image_button_off = url_prefix + button_path_off; image_preload(url_image_button_on); button_urls[button_name].on = url_image_button_on; image_preload(url_image_button_off); button_urls[button_name].off = url_image_button_off; } } var button_urls = new Array; 
