// Should someone else actually look at this code: Yes, I know document.write is fugly beyond belief, but currently I'm doing this on a dozen or so websites, so deal.
// -Paul W Sweeney esq. Year of our Lord 2006 AD.
// 
// "As it was in the beginning, as it is, and ever shall be, IE sucks without end."
function ie6_flashfix(path, width, height, trans) {	
	document.write("<object type='application/x-shockwave-flash' data='" + path + "' width='" + width + "' height='" + height + "' class='flash'>")
	document.write("	<param name='movie' value='" + path + "' />")
	if (trans) document.write("<param name='wmode' value='transparent'>")
	document.write("	<param name='quality' value='high'>")
	document.write("</object>")
}