
	//If Literature is selected, redirect to Literature Request Form
    function CheckValue(){
		if ( document.emailus.Recipient.value == "literature" ){
			location.replace( 'literature/' );
		}
	}


	//Field Background Color Change Function
	function oFocus(theField){
		theField.style.backgroundColor='lightyellow';
	}

	function oBlur(theField){
		theField.style.backgroundColor='#FFFFFF';
	}


	//Pick recipient seleced on Technical Support page
	function CheckSelected(){
		strNum = document.emailus.Recipient.options.length - 1
		strQry = document.location.search.substring(3);

		for (x=0;x<strNum;x++){
			if (document.emailus.Recipient.options[x].value == strQry){
				document.emailus.Recipient.selectedIndex = x;
				break;
			}
		}
		emailus.Comments.focus();
	}

	onload=CheckSelected