function flashObject(strFlash, intWidth, intHeight, strId, strWmode, strBGColor, strQuality, strAlign, strNoFlash, blnSecure)
{
	if(blnSecure == "true") var strSecure = 's';
	else var strSecure = '';
 	var strFlash = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http" + strSecure + "://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + intWidth + "\" height=\"" + intHeight + "\" id=\"" + strId + "\" align=\"" + strAlign + "\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"" + strFlash + "\" /><param name=\"wmode\" value=\"" + strWmode + "\" /><param name=\"quality\" value=\"" + strQuality + "\" /><param name=\"bgcolor\" value=\"" + strBGColor + "\" /><embed src=\"" + strFlash + "\" quality=\"" + strQuality + "\" bgcolor=\"" + strBGColor + "\" width=\"" + intWidth + "\" height=\"" + intHeight + "\" wmode=\"" + strWmode + "\" name=\"" + strId + "\" align=\"" + strAlign + "\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http" + strSecure + "://www.macromedia.com/go/getflashplayer\" />" +  "</object>";

 	document.write(strFlash); 
}