$.fn.upload_maker = function(destination) {
$(this).each(function() {
//Get some vars
var id = $(this).attr('id');
var image_input_id = id + '_image_url';
//write the iframe
$(this).before('');
//write hidden input
$(this).after('');
$('#' + image_input_id).focus(function() {
var url = $(this).val();
if (tinyMCE && (ed = tinyMCE.get(id))) {
ed.execCommand('mceInsertContent', false, '
');
} else {
insertTag(id, '
');
}
});
})
}