function writeit(text,id) { if (document.getElementById) { x = document.getElementById(id); x.innerHTML = ''; x.innerHTML = text; } else if (document.all) { x = document.all[id]; x.innerHTML = text; } else if (document.layers) { x = document.layers[id]; text2 = '

' + text + '

'; x.document.open(); x.document.write(text2); x.document.close(); } } output='
EarthShots.org
Wednesday\'s Shot
'; writeit(output,'earthshots');