// Flash write-out code to circumvent the way IE 6 sp1 handles embedded content
// Framfab, Kim Jensen, 23.10.2003

function writeFlashEmbedding(theWidth, theHeight, theUrl, paramName, paramValue) {
 	var flash = '<object data="'+theUrl+'" type="application/x-shockwave-flash" width="'+theWidth+'" height="'+theHeight+'" id="flashcontent"><param name="movie" value="'+theUrl+'"><param name="' + paramName + '" value="' + paramValue + '"><param name="wmode" value="transparent"></object>'
	document.write(flash);
}