function showHint(id,type) {
obj=document.getElementById('Hint_'+id);
if(type==1)
	obj.style.visibility='visible';
else
	obj.style.visibility='hidden';	
}