function ShowApplicationImage(vpath,vwidth,vheight)
{	
	document.write('<object\n');
	document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"\n');
	document.write('id="Movie1"\n');
	document.write('width="'+vwidth+'" height="'+vheight+'"\n');
	document.write('>\n');
	document.write('<param name="movie" value="'+vpath+'">\n');
	document.write('<param name="bgcolor" value="#FFFFFF">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<param name="allowscriptaccess" value="samedomain">\n');
	document.write('<embed\n');
	document.write('type="application/x-shockwave-flash"\n');
	document.write('pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"\n');
	document.write('name="Movie1"\n');
	document.write('width="'+vwidth+'" height="'+vheight+'"\n');
	document.write('src="'+vpath+'"\n');
	document.write('bgcolor="#FFFFFF"\n');
	document.write('quality="high"\n');
	document.write('wmode="transparent"\n');
	document.write('allowscriptaccess="samedomain"\n');
	document.write('>\n');
	document.write('<noembed>\n');
	document.write('</noembed>\n');
	document.write('</embed>\n');
	document.write('</object>\n');
}