function generateCaption(theForm) {
var caption = '';
if (theForm.captionText.value != '') { caption += theForm.captionText.value; }
if ((theForm.name.value != '') || (theForm.source.value != '')) {
if (theForm.captionText.value != '') {
caption += '
';
}
caption += 'Image: ';
}
if (theForm.name.value != '') { caption += theForm.name.value; }
if (theForm.source.value != '') { if (theForm.name.value != '') { caption += ', '; }
if (theForm.sourceURL.value != '') { caption += ''; }
caption += theForm.source.value;
if (theForm.sourceURL.value != '') { caption += ''; } }
if (theForm.licenseURL.value != '') { caption += ' (license)'; }
document.getElementById("captionCode").innerHTML = caption;
return false; }
Caption text: