var swfLoad = function(placementPath, swfId, swfFile, swfBg, swfVars, siteId, wmode){
	//<!------------------------------------------------>
	//<!------------------ SWF Object ------------------>
	//<!------------------------------------------------>
	var swfDiv = 				"flashContent";
	var swfFile = 				swfFile;
	var swfVersion = 			"10.0.0";
	var swfWidth = 				'100%';
	var swfHeight = 			'100%';
	var swfExpressInstall =		placementPath + "swf/script/swfobject/expressIntall/expressInstall.swf";
	
	//<!------------------------------------------------>
	//<!------------------------------------------------>
	var attributes = {};
	attributes.id = 			swfId;
	attributes.name = 			swfId;
	attributes.bgcolor = 		swfBg;
	
	//<!------------------------------------------------>
	//<!------------------------------------------------>
	var flashVars = {}
	if (swfVars){
		flashvars = swfVars;
	}
	flashvars.placementPath = placementPath;
	flashvars.swf_name = swfId;
	flashvars.siteId =  siteId;
	//flashvars.code = swfobject.getQueryParamValue("code");
	
	//<!------------------------------------------------>
	//<!------------------------------------------------>
	var params = {};
	params.quality = 			"high";
	params.menu = 				"false";
	params.scale = 				"noScale";
	params.allowscale =			"false";
	params.wmode = 				wmode;
	params.allowScriptAccess = 	"always";
	//<!------------------------------------------------>
	//<!----------------- FLASH RESIZE ----------------->
	//<!------------------------------------------------>
	var fitProperties = {};
	// ## WIDTH ##
	fitProperties.minWid = 		1220;
	fitProperties.maxWid = 		false;
	// ## HEIGHT ##
	fitProperties.minHei = 		600;
	fitProperties.maxHei = 		false;
	// ## ALIGN ##
	fitProperties.hCenter = 	true;
	fitProperties.vCenter = 	true;
	//<!------------------------------------------------>
	//<!------------------------------------------------>
	//<!-- <!> SWF OBJECT and FIT -- DO NOT TOUCH <!> -->
	//<!------------------------------------------------>
	//<!------------------------------------------------>
	
	//swfobject.addLoadEvent(function () {
		//fitProperties.target = attributes.id;
		//swffit.configure(fitProperties);
		//swffit.startFit();
	//});
	swfobject.embedSWF(swfFile, swfDiv, swfWidth, swfHeight, swfVersion,swfExpressInstall, flashvars, params, attributes);
}
