function more(id) {
	var link = jQuery('#link-'+id);
	var target = jQuery('#content-'+id);
	if(target.css('display')=='none') {
		target.css('display', 'inline');
		link.text(' Less');
	} else {
		target.css('display', 'none');
		link.text(' More');
	}
}

function upload_click() {
	//formfield = jQuery('#ads_attachment').attr('name');
	tb_show('', 'media-upload.php?type=image&amp;TB_iframe=true');
	return false;
}
