function jSelectShortcode(text) {
text = text.replace(/'/g, '"');
if(document.getElementById('jform_articletext') != null) {
jInsertEditorText(text, 'jform_articletext');
}
if(document.getElementById('text') != null) {
jInsertEditorText(text, 'text');
}
if(document.getElementById('jform_description') != null) {
jInsertEditorText(text, 'jform_description');
}
if(document.getElementById('jform_content') != null) {
jInsertEditorText(text, 'jform_content');
}
SqueezeBox.close();
}