/*********************************************************************************************************
	¹è°æ Ä³½Ã ²ô±â
**********************************************************************************************************/
try { 
	document.execCommand('BackgroundImageCache', false, true); 
} catch(me) {}

/*********************************************************************************************************
	ÇÃ·¡½Ã »ðÀÔ ½ºÅ©¸³Æ®
**********************************************************************************************************/
function ActiveX1(objects){
	var objects = document.getElementById(objects);
	if(navigator.appName == "Microsoft Internet Explorer"){
		document.write(objects.text);
		objects.id = "";
	}
}
/*********************************************************************************************************
	pngÀÌ¹ÌÁö Ã³¸® ½ºÅ©¸³Æ®
**********************************************************************************************************/
function setPng24(object) { 
    object.width=object.height=1; 
	object.className=object.className.replace(/\bpng24\b/i,''); 
    object.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ object.src +"',sizingMethod='image');" 
    object.src='';  
    return ''; 
}