function DisplayContentAD()
{
        var xmlRoot = xmlDoc.documentElement;
		var swf = "";

		if(xmlRoot != null)
		{
			// ÇØ´ç ¼³Á¤À» °Ë»öÇÑ´Ù.
			for(var i=0;i<xmlRoot.childNodes.length;i++)
			{
				var ModuleID = xmlRoot.childNodes[i].getAttribute("ModuleID");
				var Srno = xmlRoot.childNodes[i].getAttribute("Srno");

				if(Global_Request("moduleID") == ModuleID && Global_Request("Srno") == Srno)
				{
					swf = xmlRoot.childNodes[i].getAttribute("Swf");
					break;
				}
			}
		}

		if(swf == "")
		{
			// ÇØ´ç »çÇ×ÀÌ ¾ø´Â °æ¿ì
			switch(Global_Request("moduleID"))
			{
				case "304":
					swf = "page_dmd_570_60.swf";
					break;

				case "335":
					swf = "page_vq10_570_60.swf";
					break;

				case "336":
					swf = "page_vq10_570_60.swf";
					break;

				case "315":
					swf = "page_cold_570_60.swf";
					break;

				case "301":
					swf = "page_cold_570_60.swf";
					break;
				
				case "352":
					swf = "page_cold_570_60.swf";
					break;

				case "328":
					swf = "page_ezn6_570_60.swf";
					break;
			}
		}
		
		if(swf != "")
		{
			document.write('<table border="0" cellspacing="0" cellpadding="0">');
			document.write('<tr>');
			document.write('<td>&nbsp;');

			document.write('<OBJECT codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" height="60" width="570" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">');
			document.write('<PARAM NAME="_cx" VALUE="11377">');
			document.write('<PARAM NAME="_cy" VALUE="1508">');
			document.write('<PARAM NAME="FlashVars" VALUE="">');
			document.write('<PARAM NAME="Movie" VALUE="/banner/'+swf+'">');
			document.write('<PARAM NAME="Src" VALUE="/banner/'+swf+'">');
			document.write('<PARAM NAME="WMode" VALUE="Transparent">');
			document.write('<PARAM NAME="Play" VALUE="-1">');
			document.write('<PARAM NAME="Loop" VALUE="-1">');
			document.write('<PARAM NAME="Quality" VALUE="High">');
			document.write('<PARAM NAME="SAlign" VALUE="">');
			document.write('<PARAM NAME="Menu" VALUE="-1">');
			document.write('<PARAM NAME="Base" VALUE="">');
			document.write('<PARAM NAME="AllowScriptAccess" VALUE="">');
			document.write('<PARAM NAME="Scale" VALUE="ShowAll">');
			document.write('<PARAM NAME="DeviceFont" VALUE="0">');
			document.write('<PARAM NAME="EmbedMovie" VALUE="0">');
			document.write('<PARAM NAME="BGColor" VALUE="">');
			document.write('<PARAM NAME="SWRemote" VALUE="">');
			document.write('<PARAM NAME="MovieData" VALUE="">');
			document.write('<PARAM NAME="SeamlessTabbing" VALUE="1">');
			document.write('<PARAM NAME="Profile" VALUE="0">');
			document.write('<PARAM NAME="ProfileAddress" VALUE="">');
			document.write('<PARAM NAME="ProfilePort" VALUE="0">');
			document.write('<PARAM NAME="AllowNetworking" VALUE="all">');
			document.write('<PARAM NAME="AllowFullScreen" VALUE="false">');
			document.write('</OBJECT>');

			document.write('</td>');
			document.write('</tr>');
			document.write('</table>');
		}
}