function drawFlash(flashfile, imagefile, width, height, strID) {
	document.write ('<div id='+strID+' style="width: '+width+'px; height: '+height+'px;">');
	document.write ('<a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="_images/'+imagefile+'" alt="" /></a>');
	document.write ('</div>');

	var obj = new FlashObject(flashfile, "v5", width, height, "8", "#FFFFFF");
	obj.addVariable("lang", "en");
	obj.addVariable("enforce", "0");
	obj.addParam("menu", "false");
	obj.write(strID);
}