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 == 40 && iChoice != 0) {
		var sText = document.siteSearch.tx_ttnews1.value;
		if(sText == "") {
			window.open("http://www.google.bg","GOOGLE");
		}
		else {
			window.open("http://www.google.bg/search?hl=bg&q=" + sText,"GOOGLE");
		}
		return false;
	}
	if( iChoice == 41 && iChoice != 0) {
		var sText = document.siteSearch.tx_ttnews1.value;
		if(sText == "") {
			window.open("http://www.google.com","GOOGLE");
		}
		else {
			window.open("http://www.google.com/search?hl=en&q=" + sText,"GOOGLE");
		}
		return false;
	}
	else {
		var s1Text = document.siteSearch.tx_ttnews1.value;
		document.location="/en/search/6/"+s1Text+"";
		return false;
	}

	
}

