	var SMS_sHttp = null;
	var SMS_sHttp_callback = null;
	var SMS_sHttpObjArray = new Array("Microsoft.XMLHTTP", "Msxml2.XMLHTTP.5.0", "Msxml2.XMLHTTP.4.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP");
	var SMS_sHttp_isWait = false;
	
	
	function SMS_RequestHttp(tgURL, callback, args)
	{
		if (typeof(args) == "undefined")
		{
			args = '';
		}

		/*
		if (!IE)
		{
			return;
		}
		*/
		
		if (SMS_sHttp_isWait)
		{
			return false;
		}
		
		SMS_sHttp_isWait = true;
		
		if (SMS_sHttp == null)
		{
			for (var i=0; i<SMS_sHttpObjArray.length; i++)
			{
				try
				{
					SMS_sHttp = new ActiveXObject(SMS_sHttpObjArray[i]);
					break;
				}
				catch(ex)
				{
					SMS_sHttp = null;
				}
			}
		}

		if (SMS_sHttp == null)
		{
			//PopMsg("ÁË¼ÛÇÕ´Ï´Ù.<br>ÀÌ¿ëÀÚ´Ô ÄÄÇ»ÅÍ¿¡ ¹®Á¦°¡ ÀÖ¾î ¹®ÀÚ¿Õ±¹ »çÀÌÆ® ÀÌ¿ë¿¡ ¾î·Á¿òÀÌ ÀÖÀ» ¼ö ÀÖ½À´Ï´Ù.<br>¹ø°Å·Î¿ì½Ã´õ¶óµµ 02-539-0274 ·Î ÀüÈ­¹®ÀÇ ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù. ^^");
			alert("ÁË¼ÛÇÕ´Ï´Ù.<br>ÀÌ¿ëÀÚ´Ô ÄÄÇ»ÅÍ¿¡ ¹®Á¦°¡ ÀÖ¾î ¹®ÀÚ¿Õ±¹ »çÀÌÆ® ÀÌ¿ë¿¡ ¾î·Á¿òÀÌ ÀÖÀ» ¼ö ÀÖ½À´Ï´Ù.<br>¹ø°Å·Î¿ì½Ã´õ¶óµµ 02-539-0274 ·Î ÀüÈ­¹®ÀÇ ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù. ^^");
			return;
		}
		
		SMS_sHttp_callback = callback;

		var dummy = new Date().getTime()
		if (tgURL.indexOf("?") > 0)
		{
			tgURL = tgURL + "&dummy="+dummy;
		}
		else
		{
			tgURL = tgURL + "?dummy="+dummy;
		}
		
		/*
		alert(tgURL);
		return;
		*/
		
		SMS_sHttp.open("POST", tgURL, true);
		//SMS_sHttp.setRequestHeader("Content-Type:", "text/html; charset=ks_c_5601-1987");
		SMS_sHttp.setRequestHeader("Content-Type:", "application/x-www-form-urlencoded");
		SMS_sHttp.onreadystatechange = SMS_OnRetriveComplete;
    	SMS_sHttp.send(args);
		
	}

	function SMS_OnRetriveComplete()
	{ 
		if (SMS_sHttp.readyState == 4)
		{ 
			SMS_sHttp.onreadystatechange = SMS_Noop;
			//SMS_sHttp_isWait = false;

			if (SMS_sHttp.status == 200)
			{
				if (SMS_sHttp_callback != null)
				{
					eval(SMS_sHttp_callback)(SMS_sHttp.responseText);
				}
			}else {
				alert("Error: "+SMS_sHttp.status);

			}
		} 
	} 

	function SMS_Noop()
	{ 
		return false; 
	} 

