
function NewSponsor() {
	$.post('ajax.php', {mode: "new_sponsor"}, NewSponsor_result);
}

function NewSponsor_result(html) {
	Block(html, 400, 400);
}

function SelectSponsor() {
	parent.$.unblockUI();
	parent.el('_form_content_sponsor_id').innerHTML = el('spon_content').innerHTML;
}

