function attachFlash(flashFile, _width, _height, _bgColor, isTransparent){
	var flashName = flashFile.split('.');
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'  width='"+_width+"' height='"+_height+"' id='"+flashName[0]+"' align='middle'>");
	document.write("<param name='movie' value='"+flashFile+"' />");
	document.write("<param name='quality' value='high' />");
	//document.write("<param name='bgcolor' value='"+_bgColor+"' />");
	if(isTransparent == "true"){
		document.write("<param name='wmode' value='transparent' />");
	}
	document.write("<embed src='"+flashFile+"' quality='high' bgcolor='"+_bgColor+"' width='"+_width+"' height='"+_height+"' name='"+flashName[0]+"' align='middle'  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
}