var txtadstat = false;
function loadSearchText() {
	var imagenumber = 0 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
	
	keyword = new Array

	searchurl = new Array

	adtext = new Array

	
	var keyword = keyword[rand1]
	var searchurl = searchurl[rand1]
	var adtext = adtext[rand1]
		
	if (imagenumber == 0) {
		keyword = "";
	} else {	

		document.top_search.querytxt.value=adtext;			
		document.top_search.queryad.value="";
		document.top_search.queryurl.value="";
		//document.top_search.querytxt.style.backgroundImage="url()";
		document.top_search.queryad.value=keyword;
		
		document.top_search.queryurl.value=searchurl;
		//document.top_search.querytxt.focus();
	}
}

function ch () {

	if (txtadstat==false) {
		document.top_search.querytxt.value="";
		document.top_search.querytxt.style.backgroundImage="";
		document.top_search.queryad.value="";
		document.top_search.queryurl.value="";
		txtadstat=true;
	}
}


