function loadBanner(container,jsname,sfwfile,W,H) {
	
	if (Modernizr.svg && !window.globalStorage && !window.msPerformance && document.documentMode!=8){
		Modernizr.load([
			{
				load : '//www.gstatic.com/swiffy/v3.7/runtime.js'
				//load : '//www.gstatic.com/swiffy/v3.3/runtime.js'
			},
			{
				load :  jsname,
				complete: function () {
					var stage = new swiffy.Stage(document.getElementById(container),swiffyobject);
					stage.start();
				}
			}
		]);
	} else {
		//alert('swf');
		var params = {
			allowScriptAcess: 'always',
			allowFullScreen: 'true'
			//wmode: 'transparent'
		};
		var attributes = {
			id: container,
			name: container
		};
		swfobject.embedSWF(sfwfile, container, W, H, '9.0.0', false, false, params, attributes);
	}
}

