<!--
    function SwfObject_Call(a,b,c,d)//°æ·Î,Æø,³ôÀÌ,IDName
     {
        var idName="";
		if (! isNaN(d)) idName=" id='" +d+ "'";

		document.write ("<object" + idName + " classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + b + "' height='" + c + " style='z-index:1;'>");
		document.write ("<param name='movie' value='" + a + "'>");
		document.write ("<param name='quality' value='high'>");
		document.write ("<param name='menu' value='false'>");
		document.write ("<param name='allowScriptAccess' value='always'>");
		document.write ("<param name='wmode' value='transparent'>");
		document.write ("<embed" + idName + "  src='" + a + "' quality='high' wmode='transparent' allowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + b + "' height='" + c + "'></embed> ");
		document.write ("</object>");
	}
	
    function SwfObjectOp_Call(a,b,c,d)//°æ·Î,Æø,³ôÀÌ,IDName
     {
		var idName="";
		if (! isNaN(d)) idName=" id='" +d+ "'";

		document.write ("<object" + idName + " classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + b + "' height='" + c + "'>");
		document.write ("<param name='movie' value='" + a + "'>");
		document.write ("<param name='quality' value='high'>");
		document.write ("<param name='menu' value='false'>");
		document.write ("<param name='allowScriptAccess' value='always'>");
		document.write ("<param name='wmode' value='transparent'>");
		document.write ("<embed" + idName + "  src='" + a + "' quality='high' wmode='transparent' allowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + b + "' height='" + c + "'></embed> ");
		document.write ("</object>");
	}	
	
	function SwfObjectVars_Call(a,b,c,d,e)//°æ·Î,Æø,³ôÀÌ,IDName
     {
        var idName="";
	    if (! isNaN(d)) idName=" id='" +d+ "'";

	    document.write ("<object" + idName + " classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + b + "' height='" + c + " style='z-index:1;'>");
	    document.write ("<param name='movie' value='" + a + "'>");
	    document.write ("<param name='FlashVars' value='" + e + "'>");
	    document.write ("<param name='quality' value='high'>");
	    document.write ("<param name='menu' value='false'>");
	    document.write ("<param name='allowScriptAccess' value='always'>");
	    document.write ("<param name='wmode' value='transparent'>");
	    document.write ("<embed" + idName + "  src='" + a + "' quality='high' wmode='transparent' allowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + b + "' height='" + c + "'></embed> ");
	    document.write ("</object>");
    }
	
	function EreporterOp_Call(a,b)	//E_Report È£Ãâ
     {
		document.write ("<OBJECT id='XmlObj' classid='clsid:82D70476-A2BE-460B-988F-89FA125C2C91' codebase='http://www.modetour.co.kr/e-Reporter/ocx2/eReporter.cab#Version=1,2,15,9' width='" + a + "' height='" + b + "' width='800' height='627'></OBJECT>");

	}	
	
	function EmbedOp_Call(a,b,c)	//embedÈ£Ãâ
     {
		document.write ("<embed src=\"" + a + "\" width='" + b + "' height='" + c + "' quality=high autostart=true loop=true></embed>");

	}	
	
	function getXmlDom() {
    var xmlDomProgIDs = ["MSXML2.DOMDocument.5.0", 
                        "MSXML2.DOMDocument.4.0", 
                        "MSXML2.DOMDocument.3.0", 
                        "MSXML2.DOMDocument",
                        "Microsoft.XmlDom"];
    if (typeof(ActiveXObject) == "function")
	{
        for(var i = 0; i < xmlDomProgIDs.length; i++) {
            try {
                var xmlDom = new ActiveXObject(xmlDomProgIDs[i]);
                return xmlDom;
            } catch(e) {
                // ¹«½Ã
            }
        }        
    }
    else
    {
         return self.document.implementation.createDocument("","",null);
    }
    throw new "MSXML ÀÌ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù!";
}
var request;
function createRequest()
{
    try {
        request = new XMLHttpRequest(); //¸ðÁú¶ó À¥ ºê¶ó¿ìÀú
    } catch (trymicrosoft) {
        try {
            request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (othermicrosoft){
             try {
                request = new ActiveXObject("Microsoft.XMLHTTP");
             }catch (failed){
                request = null;
               }
           }
    }
    
    if (request == null)
        alert("Çö ºê¶ó¿ìÀú¿¡¼­´Â °Å·¡Ã³¸¦ °Ë»öÇÒ¼ö ¾ø½À´Ï´Ù.");
}
-->