<!--//
//
// IF YOU SEE THIS UPGRADE YOUR BROWSER !!!
// 
//////////////////////////////////////////////////////////////////////////////////////
//// Hampton Development  -  http://www.hamptonplace.com                          ////
//// Commercial Web Site Development & Web Site Hosting                           ////                                    
//// Custom Scripting, Applications & Graphics - Absolutely No Redistribution     ////
//// Copyright © 1996 - 2001 A.R.E. Inc.  All Rights Reserved.           		  ////                                                  
//////////////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////
/// Quick Links

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

///////////////////////////////////////////////////////////////////////
/// Date Script
// array function
       function makeArray(len) 
        {       for (var i = 0; i < len; i++)
                {       this[i] = null
                }
                this.length = len
        }

// array of day names
        var daynames = new makeArray(7)
        daynames[0] = "Sunday"
        daynames[1] = "Monday"
        daynames[2] = "Tuesday"
        daynames[3] = "Wednesday"
        daynames[4] = "Thursday"
        daynames[5] = "Friday"
        daynames[6] = "Saturday"
// array of month names
        var monthnames = new makeArray(12)
        monthnames[0] = "January"
        monthnames[1] = "February"
        monthnames[2] = "March"
        monthnames[3] = "April"
        monthnames[4] = "May"
        monthnames[5] = "June"
        monthnames[6] = "July"
        monthnames[7] = "August"
        monthnames[8] = "September"
        monthnames[9] = "October"
        monthnames[10] = "November"
        monthnames[11] = "December"
// define date variables
        var now = new Date()
        var day = now.getDay()
        var month = now.getMonth()
        var year = now.getFullYear()
        var date = now.getDate()
        var hour=now.getHours()
        var minutes=now.getMinutes()
// write date
        function writeDate()
        {       document.write("<FONT COLOR='#4E7494' SIZE='1' FACE='Arial'>" +      monthnames[month] + " " + date + ", " + year +"  "  +"</FONT>")
        }
		

///////////////////////////////////////////////////////////////////////////	
//// Show / Hide Layers /////
function MM_showHideLayers() {
var i, visStr, args, theObj;
args = MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) {
visStr = args[i+2];
if (navigator.appName == 'Netscape' && document.layers != null) {
theObj = eval(args[i]);
if (theObj) theObj.visibility = visStr;
} else if (document.all != null) {
if (visStr == 'show') visStr = 'visible';
if (visStr == 'hide') visStr = 'hidden';
theObj = eval(args[i+1]);
if (theObj) theObj.style.visibility = visStr;
} }
}

///////////////////////////////////////////////////////////////////////////	

function change_img() {
current = document.ch_form.ch_img.selectedIndex;
document.images.ch_show.src = document.ch_form.ch_img[current].value;
}

///////////////////////////////////////////////////////////////////////////

function resizeWin(newLoc, newWidth, newHeight) {
        newWin = open("",newLoc,"scrollbars=yes,margin=0,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
}

///////////////////////////////////////////////////////////////////////////		
//-->

