
//----------------------------------------------------------------------
// XXXXdrawHeader() 
// Responsible for drawing the top header flash table, 
// and passing along various variables to the flash movie
//----------------------------------------------------------------------
function  drawHeader(section, depth, mt3,mu3, mt4,mu4, mt5,mu5) {

	var newline = "\n";
	//if (mt3==undefined) { mt3=""; mu3=""; }
	//if (mt4==undefined) { mt4=""; mu4=""; }
	//if (mt5==undefined) { mt5=""; mu5=""; }


		document.write('<table width="772" border="0" cellspacing="0" cellpadding="0">'+newline);
		document.write('  <tr>'+newline);
		document.write('      <td bgcolor="#FFFFFF"><a name="top"><OBJECT id="headerflash"  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+newline);
		document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'+newline);
		document.write(' WIDTH="772" HEIGHT="203" ALIGN="">'+newline);
		document.write('          <param NAME=movie VALUE="../hdr_container_section.swf?section='+section+'&d='+depth+'&mt3='+escape(mt3)+'&mu3='+mu3+'&mt4='+escape(mt4)+'&mu4='+mu4+'&mt5='+escape(mt5)+'&mu5='+mu5+'">'+newline);
		document.write('          <param name="quality" value="high">'+newline);
		document.write('		  <param name="menu" value="false">'+newline);
		document.write('          <param NAME="bgcolor" VALUE="#FFFFFF">'+newline);
		document.write('          <EMBED src="../hdr_container_section.swf?section=client&d=1&mt3=Advance%20Auto%20Parts&mu3=client_case1.html" name="headerflash" quality="high" menu="false" bgcolor="#FFFFFF" WIDTH="772" HEIGHT="203" ALIGN=""'+newline);
		document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>'+newline);
		document.write('        </OBJECT></a></td>'+newline);
		document.write('  </tr>'+newline);
		document.write('</table>sdfsdfsd'+newline);
	
}

