
function close_tab(tab_name) {
    jQuery('#'+tab_name).hide("slow");
}
function open_tab(tab_name) {    
    jQuery('#'+tab_name).show("slow");
}
function toggle_tab(tab_name) {
	jQuery('#'+tab_name).toggle("slow");
}

function menuPopup(divId,qasId,countId) {
	for (var i=1; i<countId; i++) {
		if (document.getElementById('qas'+i)) {
			close_tab('qas'+i);
		}
	}
	open_tab(qasId);
}

