// JavaScript Document
function g_check(type, obj) {
	if(type=="blur"){
		if(obj.value=="") {
			obj.style.background='url("http://www.google.ru/cse/intl/ru/images/google_custom_search_watermark.gif") no-repeat scroll left center #fff';
		}
	}
	if(type=="focus"){
		obj.style.background='#fff';
	}
}


