
function manageComponent(section,page,id) {

	parms = centerParms('500','300') + ",width=500,height=300,status=yes";
	
	url = "index.php?module=editcomponent&componentId=" + id + "&page=" + page + "&sectionId=" + section;
	window.open(url,'_component',parms);

}

function manageSectionTitle(section) {

	parms = centerParms('300','150') + ",width=300,height=150,status=yes";
	url = "index.php?module=editsectiontitle&sectionId=" + section;

	window.open(url,"_sectiontitle",parms);

}

