// JavaScript Document
function $(objid){
	return document.getElementById(objid);
}

function runPostAdminAction(form,action,postid){
	$('action').value = action;
	$('postid').value = postid;
	form.submit();
}

function toggleSection(sectionid,disable){
	if ($(sectionid).style.display == 'block'){
		$(sectionid).style.display = 'none';
		if ($('lbl_' + sectionid)){
			$('lbl_' + sectionid).innerHTML = '+ Open';
		}
		if ($('postarea')){
			$('search').onclick = function(){toggleSection('searchPanelWrapper')};
		}
	}else{
		$(sectionid).style.display = 'block';
		if ($('lbl_' + sectionid)){
			$('lbl_' + sectionid).innerHTML = '- Close';
		}
		if ($('postarea')){
			$('search').onclick = '';
		}
	}
}



