var scrollid='';
var sid=0;
var sectionid='';
function edit_section_content(obj)
{
	sid=$(obj).attr('rel');
	sectionid=$(obj).parent().attr('id');
	var editobj=$('#edit_section_'+sectionid);
	var this_section_width=$(obj).parent().parent().width();
	var t='section_box';
	scrollid='top_edit_section_'+sectionid;
	
	var str = $(obj).attr('href').split('&');
	
	var strsec=sectionid.split('_');
	var height=360;
	switch(strsec[0]) {
		case 'html':
			height=410; break;
	}
	
	// if (this_section_width) $('#edit_content_lightbox').width(this_section_width+180);
	$('#edit_content_lightbox').html('<iframe src="'+flink+'inc/load_section_form.php?sectiontype='+sectionid+'&sectionid='+sid+'&'+str[1]+'" frameborder="0" style="width:100%;height:'+height+'px;"></iframe><a href="'+str[1]+'&#top_edit_section_'+sectionid+'" rel="'+sid+'" class="close" onclick="close_lightbox($(\'#overlay_'+t+'\'),\''+scrollid+'\');return false;">X</a><br class="clear" />');
	
	// $('#edit_content_lightbox').html(editobj.html()+'<a href="#top_edit_section_'+sectionid+'" class="close" onclick="close_lightbox(0,\''+scrollid+'\');return false;">X</a><br class="clear" />');
	
	show_lightbox(t,false);
}
