	
	function showFlash (m,n,w,h,b,c,s,k,t,a) {
		if (m == "") { m = "main"; }	// movie
		if (n == "") { n = "flash"; }	// name		
		if (w == "") { w = "100%"; }	// width
		if (h == "") { h = "100%"; }	// height
		if (b == "") { b = "#ffffff"; } // background colour				
		if (c == "") { c = 1; }			// cache time
		if (s == "") { s = 1; }			// site id
		if (k == "") { k = 0; }			// skip server selection
		if (t == "") { t = 0; }			// tempory page
		if (a == "") { a = 0; }			// server account capacity

		/// output the flash
		document.write(
			"<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\""+w+"\" height=\""+h+"\">"+
			"<param name=\"movie\" value=\""+flashAssets+"/flash/"+m+".swf?ctime="+c+"\">"+
			"<param name=\"menu\" value=\"false\">"+
			"<param name=\"flashvars\" value=\"siteId="+s+"&skipServer="+k+"&tmpPage="+t+"&capacity="+a+"&flashAssetsLocation="+flashAssets+"\">"+
			"<param name=\"quality\" value=\"high\">"+
			"<param name=\"bgcolor\" value=\""+b+"\">"+
			"<embed src=\""+flashAssets+"/flash/"+m+".swf?ctime="+c+"\" quality=\"high\" flashvars=\"siteId="+s+"&skipServer="+k+"&tmpPage="+t+"&capacity="+a+"&flashAssetsLocation="+flashAssets+"\" wmode=\"normal\" bgcolor=\""+b+"\"  width=\""+w+"\" height=\""+h+"\" name=\""+n+"\" align=\"\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>"+
			"</object>"
			);
	}