function randomSearchChooser(){

	//var ranNum = Math.floor(Math.random()*8);
	//alert (ranNum);
	//ranNum = 6;
	window.document.bing.bingSearch.focus();
	
	var ranNum= 100;
	

    if (ranNum ==0){
    	window.document.google.searchGoogle.focus();
    }
    else if (ranNum == 1){
    	window.document.altavista.altaSearch.focus();
    }
    else if (ranNum == 2){
    	window.document.msn.msnSearch.focus();
    }
    else if (ranNum == 3){
    	window.document.allTheWeb.allSearch.focus();
    }
    else if (ranNum == 4){
    	window.document.MetaCrawler.metaSearch.focus();
    }
    else if (ranNum == 5){
    	window.document.WebCrawler.wbSearch.focus();
    }
	 else if (ranNum == 6){
    	window.document.flavored.searchFlavored.focus();
	 }
    else if(ranNum ==7){
    	window.document.ithakimetasearch.ithakiSearch.focus();
    }
	 else{
	 	window.document.bing.bingSearch.focus();
	}
}
