function goThere()
{
var option=document.listoptions.navoption.options[document.listoptions.navoption.selectedIndex].value;

	if (option!="")
	{
	self.location.href=option;
	}
}

function textLimit(field, maxlen) {
	
	if (field.value.length > maxlen) {
		
		alert('Gift Message is limited to ' + maxlen + ' characters. Your input is ' + field.value.length + ' characters long. Your input has been truncated to 30 characters.');
		
		field.value = field.value.substring(0, maxlen);
		

	}
	
}

