<!--
	// BOOKMARK FUNCTION
	// used for header tools on public pages
	function bookmark() {
		if ( (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4) && (navigator.userAgent.toLowerCase().indexOf("win") != -1) ) {
			window.external.AddFavorite(location.href, document.title);
		} else {
			alert("To bookmark this page, click \"OK\" below    \nand then press Control-D on your keyboard.\n(Macintosh users press Command-D.)");
		}
		return false;
	}

	// AUTOJUMP FUNCTION
	// used for phone and social security fields in userNewTicket forms
	var downStrokeField;
	function autojump(fieldName,nextFieldName,fakeMaxLength)
	{
	var myForm=document.forms[document.forms.length - 1];
	var myField=myForm.elements[fieldName];
	myField.nextField=myForm.elements[nextFieldName];
	
	if (myField.maxLength == null)
	   myField.maxLength=fakeMaxLength;
	
	myField.onkeydown=autojump_keyDown;
	myField.onkeyup=autojump_keyUp;
	}
	
	function autojump_keyDown()
	{
	this.beforeLength=this.value.length;
	downStrokeField=this;
	}
	
	function autojump_keyUp()
	{
	if (
	   (this == downStrokeField) && 
	   (this.value.length > this.beforeLength) && 
	   (this.value.length >= this.maxLength)
	   )
	   this.nextField.focus();
	downStrokeField=null;
	}
	
	// SHOW/HIDE LAYER FUNCTION
	// used for help section in userNewTicket forms
	function show(object) {
		if (document.getElementById) {
			document.getElementById(object).style.visibility = 'visible';
			document.getElementById('ticketNewHelp_mainText').style.visibility = 'hidden';
		}
	}

	function hide(object) {
		if (document.getElementById) {
			document.getElementById(object).style.visibility = 'hidden';
			document.getElementById('ticketNewHelp_mainText').style.visibility = 'visible';
		}
	}		
	
	// NAVIGATION HOVER FUNCTION
	// used for main navigation
	function hover(ref, classRef) { eval(ref).className = classRef; }


	// USA MAP FUNCTION
	// js for flash usa map - handles hrefs for state clicks
	function clickHandler(click_value) {
		location = click_value
	}

// -->