function x(action, applyto){
			switch (action){
				case "over":
					applyto.style.background="url(/HTMWeb05/Templates/english/Radiant/images/buttons/b_bgR.jpg)";
					break;
				case "out":
					applyto.style.background="url((/HTMWeb05/Templates/english/Radiant/images/buttons/b_bg.jpg)";
					break;
				case "click":
					if(document.all){
						var i;
						
						for(i=0;i<applyto.childNodes.length;i++){
							try{
								if(applyto.childNodes[i].href.length>1){
									applyto.childNodes[i].click();
									break;
								}
							}catch(ex){}
						}
					}
					break;
				case "overcolor":
					applyto.style.backgroundColor="#fdfddf";
					break;
				case "outcolor":
					applyto.style.backgroundColor="#fdfdfd";
					break;
			}
	}
	function GO_Search()
		{ var url1 = "http://www.google.com/ie?sourceid=navclient&ie=UTF-8&q=site:www.hitechmaster.net+";
		  var url2 = document.getElementById("InputSearch").value;
		  var urlSearch = url1.concat(url2);
		
		return  window.open(urlSearch,"_search")
		}
	