//ÀÌ¹ÌÁö Å¬¸¯½Ã Å×µÎ¸® ¾ø¾Ö±â

<!-- 
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 


//ÆË¾÷¿­±â
<!--
function popUp(url,name,w,h,scr)
{window.open(url,name,"width="+w+",height="+h+",scrollbars="+scr);}
// -->



<!--//ÀÌ¹ÌÁö ·Ñ¿À¹ö -->
function show_layer(obj, n, v) //show_layer(id, °¹¼ö, º¸¿©ÁÙ·¹ÀÌ¾î)
	{
		for (var i=1; i<=n; i++)
		{
			if (i == v) {document.all[obj+i].style.display='';}
			else {document.all[obj+i].style.display='none';}
		}
	}
	

function ZoomnZout(param){
	//alert("È®´ë/Ãà¼Ò");
  if(navigator.userAgent.toLowerCase().indexOf("msie")!=-1){
     if(document.body.style.zoom==null||document.body.style.zoom==""){     
      zoomStat = 100;
     }
    
     if(param=="in"){
      zoomStat = zoomStat + 10;
     }else{
      zoomStat = zoomStat - 10;
     }
    
     if(zoomStat > 140){
      zoomStat = 140;      
     }
    
     if(zoomStat < 60){
      zoomStat = 60;
     }
    
     //document.getElementById("Utility").style.left = (870*(zoomStat/100))+"px";     
     document.body.style.zoom = zoomStat+"%";
  }else{
  	 document.getElementById('UtilBoxColor').style.display = 'block';
     document.getElementById('ColorSetTitle').innerHTML = "È­¸éÈ®´ëÃà¼Ò ¾È³»";
	 document.getElementById('ColorSetDiv').innerHTML = "<table cellpadding=0 cellspacing=0 border=0><tr><td width=180 height=90 align=center>È­¸éÃà¼ÒÈ®´ë´Â I.E ¿¡¼­¸¸ Áö¿øµË´Ï´Ù.<bR>CTRLÅ°¸¦ ´©¸¥ »óÅÂ¿¡¼­ ¸¶¿ì½º ÈÙÀ» À§·Î ±¼¸®¸é È­¸éÀÌ È®´ëµË´Ï´Ù. </td></tr></table>";
  }
}





function setPng24(obj) {
    obj.width=obj.height=1;
    obj.className=obj.className.replace(/\bpng24\b/i,'');
    obj.style.filter ="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
    obj.src='';
    return '';
}






--> 



