function getImg(team,name) {
	new Ajax.Request('getImg.php',{method:'post',parameters:{team:team,name:name},onSuccess:function(arg2){
		response=arg2.responseText;
		//alert(response);
		response.evalScripts();
		
	}});

}
