<!--

function getFlash(swf, swfwidth, swfheight, wmode) {
	var flashhtml = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		+ 'WIDTH="'+swfwidth+'" HEIGHT="'+swfheight+'"'
		+ 'CODEBASE="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<PARAM NAME="MOVIE" VALUE="'+swf+'">'
		+ '<PARAM NAME="PLAY" VALUE="true">'
		+ '<PARAM NAME="LOOP" VALUE="true">'
		+ '<PARAM NAME="QUALITY" VALUE="high">'
		+ '<PARAM NAME="MENU" VALUE="false">'
		+ '<PARAM NAME="WMODE" VALUE="transparent">'
		+ '<EMBED SRC="'+swf+'"'
		+ 'WIDTH="'+swfwidth+'" HEIGHT="'+swfheight+'" '
		+ 'PLAY="true" '
		+ 'WMODE="'+wmode+'" '
		+ 'LOOP="false" '
		+ 'QUALITY="high" '
		+ 'MENU="false" '
		+ 'TYPE="application/x-shockwave-flash" '
		+ 'PLUGINSPAGE="https://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">'
		+ '</EMBED>'
		+ '</OBJECT>';
	return flashhtml;
}

function getImage(filepath, width, height, alttext, cssclass) {
	var imagehtml = "<img src=\""+filepath+"\" width=\""+width+"\" height=\""+height+"\" alt=\""+alttext+"\" class=\""+cssclass+"\" />";
	return imagehtml;
}

// -->