$(document).ready(function()
{
	$('#displayVersions').hide();
	$('#displayDescription').hide();
	$('#messages').change(function(){if($('#messages option:selected').val()!='');A('m='+$('#messages option:selected').val())});
	$('#search').keyup(function(){if( ($(this).val() !='Enter a language or an ethnologue code') && ($(this).val().length > 1) ); A('q='+$('#search ').val())});
});

var goString='';
function A(str) { goString=str; }

function submitClicked()
{
	if($('#search').val() != 'Enter a language or an ethnologue code' || $('#messages option:selected').text() != 'Choose a message')
	{
		if(goString !='')
			window.location.href='../search/?'+goString;
		else return false;
	}else return false;
}

function focusInput(i){ if(i.value == 'Enter a language or an ethnologue code' || i.value == '') { i.value = ''; } }
function blurInput(i) { if(i.value == '') { i.value = 'Enter a language or an ethnologue code'; } }
