// Proxywrite.js  -  a simple external script to document.write() for the purpose of overcoming Active Content woes in IE
// by Heng Wei Chu

function proxywrite (string) {
	document.write (string);
// how simple is that? :D
}

