var searchUrl = "http://www.aljbs.org/php/search.php";

function toGoogle() {
	var url;
	var qry;
		
	qry = document.getElementById('googlesearch').value;
	var theLength = qry.length;
	if(theLength < 1) {
		window.open(searchUrl,"_top");
	} else {
		qry.replace(' ','%20');
		url = "http://www.google.com/search?q=" + qry + "+site%3Awww.aljbs.org";
		window.open(url, "_new");
	}  
}  // end function toGoogle

function validateSearch() {
	if (window.event.keyCode == 13) {
		window.event.keyCode =0;
		toGoogle();
	}  // end if
}  // end function validateSearch