<!--
/*
function window.onload() {
	document.forms[0].elements[0].focus();
}*/

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function CheckNull( data ) {
	for ( var i = 0 ; i < data.length ; i++ ){
		if ( data.substring( i, i+1 ) != " " )
		return false;
	}
	return true;
}

function Search() {

	if ( CheckNull(document.forms[0].elements[0].value) )	{
		alert("The search field empty");
		document.forms[0].elements[0].focus();
		return;
	}

  document.forms[0].submit();
}
//-->