function google_translate()
{
		$("#google_translate_id").show('blind');
}
function close_google_translate()
{
		$("#google_translate_id").hide('blind');
}
function clickclear(thisfield, defaulttext) {
	 if (thisfield.value == defaulttext) {
		 thisfield.value = "";
	 }
 }
 
 function clickrecall(thisfield, defaulttext) {
	 if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}

function search()
{
	var var_name = $("input[@name='search_by']:checked").val();
	var url_option = '';
	if(var_name == 'search_by_university'){
		url_option = 'search_by_university';
	}else{
		url_option = 'search_by_course';
	}



	
	document.search.method = 'get';
	document.search.action = 'http://www.mbbsinchina.com/search/'+url_option+".html";
	document.search.submit();
	return false;
}

function fancyHide()
{
	$('upload').hide();
}

function fancyShow()
{
	$('upload').show('');
}