function CheckDirection() {
	var iChoice = 0;
	for(i = 0; i < document.siteSearch.yesno.length; i++) {
		if(document.siteSearch.yesno[i].checked) {
			iChoice = document.siteSearch.yesno[i].value;
		}
	}

	if( iChoice == 41 && iChoice != 0) {
		var sText = document.getElementById('TextBox1').value;
		var sLang = document.getElementById('TextBox2').value;
		if(sText == "") 
                        window.location.href = "index.php?id=289&L=" + sLang;
		else 
                        window.location.href = "index.php?id=289&action=search&search=" + sText + "&L=" + sLang;
		return false;
	}
	return true;
}

