function flash_view(site_path,brandcd,categorycd,othercd,splash_flag){
	if(othercd){
		brandcd = "";
		categorycd ="";
		splash_flag="off";
	}
	if((brandcd!="" && brandcd !="null") || (categorycd!="" && categorycd !="null")){
		splash_flag="off";
	}
	if(splash_flag == "off"){
	    if(window.opera){                        //opera

			document.getElementById('box').style.pixelHeight = 245;
	    } else if(document.getElementById){      //e5,e6,n6,n7,m1—p
			document.getElementById('box').style.height = 245+"px";

	    } else if(document.all){                 //e4—p
			document.all('box').style.pixelHeight = 245;

		}
	}

	var flash_varsion ="2008/03/21";
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="top" align="middle" valign="top">'+"\n");
	document.write('<param name="movie" value="'+site_path+'/swf/main.swf?d='+flash_varsion+'&site_path='+site_path+'&brandcp='+brandcd+'&categorycd='+categorycd+'&othercd='+othercd+'&splash='+splash_flag+'" />'+"\n");
	document.write('<param name="allowScriptAccess" value="sameDomain" />'+"\n");
	document.write('<param name="loop" value="false" />'+"\n");
	document.write('<param name="menu" value="false" />'+"\n");
	document.write('<param name="quality" value="high" />'+"\n");
	document.write('<param name="scale" value="noscale" />'+"\n");
	document.write('<param name="wmode" value="opaque" />'+"\n");
	document.write('<param name="bgcolor" value="#FFFFFF" />'+"\n");
	document.write('<param name="FlashVars" value="" />');
	document.write('<embed src="'+site_path+'/swf/main.swf?d='+flash_varsion+'&site_path='+site_path+'&brandcp='+brandcd+'&categorycd='+categorycd+'&othercd='+othercd+'&splash='+splash_flag+'" align="middle" allowScriptAccess="sameDomain" loop="false" menu="false" quality="high" scale="noscale" wmode="opaque" bgcolor="#FFFFFF" width="100%" height="100%" name="top" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+"\n");
	document.write('</object>'+"\n");
}