// <!--
// $Id: sitetools.js,v 1.11 2006/11/10 18:15:13 jyu Exp $
// SITE TOOLS
// Scripts used within the local site for
// accessing certain aspects of the CMS.

function editLocalTermList(terms, group, encdata) {
	editListWindow = window.open('/cms/lib/assign_list_order.php?terms='+terms+'&group='+group+'&encdata='+encdata, 'Assign_List_Order', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=30,width=620,height=520');
	editListWindow.moveTo(30,30);
	editListWindow.focus();
}

function editSiteBlock(bid) {
	editSBWindow = window.open('/cms/lib/edit_siteblock.php?bid='+bid, 'Edit_Site_Block', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=30,width=720,height=580');
	editSBWindow.moveTo(30,30);
	editSBWindow.focus();
}

// -->

