//Script startFlash.js

function startFlash(sSource, sWidth, sHeight)
{
	document.write("<object  codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='" + sWidth + "' height='" + sHeight + "'>")
	document.write("<param name='movie' value='" + sSource + "'>")
	document.write("<param name='menu' value='false'>")
	document.write("<param name='wmode' value='transparent'>")
	document.write("<param name='quality' value='high'>")
	document.write("<embed src='" + sSource + "' wmode='transparent' menu=false quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + sWidth + "' height='" + sHeight + "'></embed>")
	document.write("</object>")
}

