﻿// JScript File
function setContent(id)
{var str;
str = "<table width=300 height=80 border=0>"
str += "<tr><td class=mainCopy><i>Looking to create a client-side include? "
str += "This is a little trick I worked out to avoid having to duplicate content (I'm sure I'm not the first).</i>"
str += "</td></tr></table>"
document.getElementById(id).innerHTML = str;
}
