function writeFlash(flashURL, width, height, align)
{
	document.write('<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	if (width!=null && width!='') {
	   document.write(' width="'+width+'" ');
  }
  if (height!=null && height!='') {
	   document.write(' height="'+height+'" ');
  }
  if (align!=null && align!='') {
	   document.write(' align="'+align+'" ');
  }
	document.write('><param value="'+flashURL+'" name="movie">');
	document.write('<param value="high" name="quality">');
	document.write('<param value="transparent" name="wmode">');
	document.write('<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" quality="high" wmode="transparent" src="'+flashURL+'" ');
	if (width!=null && width!='') {
	   document.write(' width="'+width+'" ');
  }
  if (height!=null && height!='') {
	   document.write(' height="'+height+'" ');
  }	
	document.write('></embed></object>');
}
