function submitSearch() {
	var blnPass		= true;
	var strInputId	= "searchtxt";
	var strActionURL= "common/indexff56.html?pageid=7100";
	var strKeyword	= document.getElementById(strInputId).value;
	
	if(strKeyword.length <= 0) {
		blnPass = false;
		alert(errMissingSearchWord);
		document.getElementById(strInputId).value='';
		document.getElementById(strInputId).focus();
	}
	if(blnPass) { 
		document.getElementById("pageid").value = '7100';
		document.headerform.action = strActionURL; 
		document.headerform.submit();
	}
}

function findregion() {
	var strInputId	= "selectRegion";
	document.location.href = (document.getElementById(strInputId).value);
} 

function sendEmail() { 	document.location.href = 'mailto:?Body=' + document.title + ' ' + document.location.href; }
