<!--

// doWrite.js
// Writes a string to the document. (IE Flash activation workaround; can't document.write inline, must be included.)

doWrite = function (sValue) {
	document.write(sValue);
}

//-->
