      /* *************************************************************************************************
	* Desc :   Internet Explorer Patch Script 
        * Date  : 2006.02.22
	*
	*  Copyright(ÀúÀÛ±Ç) Do Not Erase This Comment!!! (ÀÌ ÁÖ¼®¹®À» Áö¿ìÁö ¸»°Í)
	*  
	*  In the case of modifing source, you should email to all the authors 
	*  in the below author list for information ( such as all set of modified sources,
	*  information of modifications, etc..)
	*  If provided modifications are proved reasonable, we may update imgbutton.htc 
	*  reflecting your ideas on modifications
	*  Furthermore, if your modifications are proved valuable, it is possible to add 
	*  your information on the authors list under deliberation.
	*
	*  (Caution!) DO NOT redistribute without permission. 
	*             Distribution to outside of LG CNS is NOT permitted. 
	*
	*  ¼Ò½º¸¦ º¯°æÇÏ¿© »ç¿ëÇÏ´Â °æ¿ì ¾Æ·¡ÀÇ ÀúÀÚ ¸®½ºÆ®¿¡ µî·ÏµÈ ¸ðµç ÀúÀÛÀÚ¿¡°Ô
	*  º¯°æµÈ ¼Ò½º ÀüÃ¼¿Í º¯°æµÈ »çÇ×À» mail·Î ¾Ë·Á¾ß ÇÑ´Ù.
	*  ÀúÀÛÀÚ´Â Á¦°øµÈ ¼Ò½º°¡ À¯¿ëÇÏ´Ù°í ÆÇ´ÜµÇ´Â °æ¿ì ÇØ´ç »çÇ×À» ¹Ý¿µÇÒ ¼ö ÀÖ´Ù.
	*  Áß¿äÇÑ Idea¸¦ Á¦°øÇÏ¿´´Ù°í ÆÇ´ÜµÇ´Â °æ¿ì ÇùÀÇÇÏ¿¡ ÀúÀÚ List¿¡ ¹Ý¿µÇÒ ¼ö ÀÖ´Ù.
	*  
	*  (ÁÖÀÇ!) ¿øÀúÀÚÀÇ Çã¶ô¾øÀÌ Àç¹èÆ÷ ÇÒ ¼ö ¾øÀ¸¸ç LG CNS ¿ÜºÎ·ÎÀÇ À¯ÃâÀ» ÇÏ¿©¼­´Â ¾ÈµÈ´Ù.
	*  
	**
	* AUTHORS LIST       E-MAIL                   HOMEPAGE
	* TK Shin            tkyushin@lgcns.com       http://www.javatoy.net
	* 
	**
	** MODIFICATION HISTORY
	** DATE       Version    DEVELOPER        DESCRIPTION
	** 2006/02/06 0.8        Shin Tack Kyu    Initial Release
	**
	** Detail Build HISTORY
	** DATE        BUILD  DESCRIPTION
	** 2006/02/06 a100   alpha Release
        ***************************************************************************************************/ 
	document.attachEvent ("onreadystatechange", function() {
												   if (document.readyState=="complete")   {
												      if (window.objectPatch) window.objectPatch();
												   }
												}
						)

	function objectPatch() {

		var os = document.getElementsByTagName("object");
		for (var idx=0; idx < os.length; idx++) {
			var peer = os[idx];
			var clsid = peer.getAttribute("classid");
			if (!clsid) continue;
			switch (clsid.toLowerCase()) {
				case "clsid:bb4533a0-85e0-4657-9bf2-e8e7b100d47e" :  // combo
				case "clsid:71e7aca0-ef63-4055-9894-229b056e9c31" :  // grid
				case "clsid:6bf52a52-394a-11d3-b153-00c04f79faa6" :  // media player
				case "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" :  // flash
				//case "clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95" :  // aod
				//case "clsid:48f55edc-9847-41cf-88a9-30e7804aefa3" :// 300,600 player
							var html = peer.outerHTML;
		  				peer.outerHTML = html;
		  				break;
		  	default:
		  				break;
		}

		}
	}