function embedFlash(strName,strPath,strMovie,intWidth,intHeight){
	  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="'+strName+'" name="'+strName+'" width="'+intWidth+'" height="'+intHeight+'">');
		document.write('<param name="movie" value="'+strPath+strMovie+'" >');
		document.write('<param name="quality" value="high" >');
		document.write('<param name="wmode" value="transparent" >');
		document.write('<param name="menu" value="false" >');
		document.write('<embed src="'+strPath+strMovie+' " name="'+strName+'" width="'+intWidth+'" height="'+intHeight+'" quality="high" pluginspage="www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
	  document.write('</object>');
}