// javascript file 
//***********************************************| 
// embed flash OBJECT
//***********************************************| 
function embedFlash(swfUrl,swfWidth,swfHeight,swfBgColor,scale) { 
	var postUrl=location.search; 
	if (swfUrl.indexOf("?")!=-1 && postUrl  !="") { 
		object_url=swfUrl+"&"+postUrl.split("?")[1]; 
	} else { 
		object_url=swfUrl+postUrl; 
	} 
	object= "<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='"+swfWidth+"' height='"+swfHeight+"' id='swf'>"; 
	object+="<PARAM name='movie' value='"+object_url+"' />"; 
	object+="<PARAM name='quality' value='best' />";
	if(swfBgColor != ""){ 
		object+="<PARAM name='BGCOLOR' value='"+swfBgColor+"' />"; 
	}
	if(scale != ""){ 
	object+="<PARAM name='scale' value='"+scale+"'>"; 
	}
	if(swfBgColor == "transparent"){ 
		object+="<PARAM name='wmode' value='transparent'>"; 
	} 
	object+="<EMBED src='"+object_url+"' width='"+swfWidth+"' height='"+swfHeight+"' name='swf' swliveconnect='true' "; 
	if(swfBgColor == "transparent"){ 
		object+="wmode='transparent'"; 
	}
	if(scale != ""){ 
	object+="scale='"+scale+"'"; 
	}
	object+="quality='best' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' ";
	if(swfBgColor != ""){ 
		object+="bgcolor='"+swfBgColor+"'";
	}
	object+="></embed></object>"; 
	document.write(object); 
} 
//***********************************************|