
function showInfo(sourceSelector,destSelector,text){
	var html = '';
	if(sourceSelector!=''){
		html = $(sourceSelector).html();
	}
	if(html == ''){
		html = text;
	}
	$(destSelector).html(html);
}

