<!--
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
//-->

<!--   
function search_Validate(theForm)       
{   
  if (theForm.keyword.value == "")       
  {       
    alert("ÇëÊäÈë²úÆ·Ãû³Æ!");       
    theForm.keyword.focus();       
    return (false);       
  }       	
  return (true);       
}       
//-->
<!--
function ShowDiv(thisDiv,thisHeight,thiswidth,thisMouse) 
{
	thisDiv.style.visibility="visible";
	//args=ShowDiv.arguments;
	//alert(args.length)
	if (thisMouse=="OnClick")
	{
		obj=window.event.srcElement;
		objLeft   = obj.offsetLeft;
		objTop    = obj.offsetTop;
		objParent = obj.offsetParent;
		while (objParent.tagName.toUpperCase() != "BODY")
		{
			objLeft  += objParent.offsetLeft;
			objTop   += objParent.offsetTop;
			objParent = objParent.offsetParent;
		}
		thisDiv.style.left=objLeft+thiswidth;
		thisDiv.style.top=objTop+thisHeight;
	}

}

function HiddenDiv(thisDiv)
{
    thisDiv.style.visibility="hidden";
}

function showHeight()
{
obj=window.event.srcElement;
//alert(obj.height)

}
//-->

<!--  
var flag=false;
function DrawImage(ImgD,ImgW,ImgH){
   var image=new Image();
   var ImgW=ImgW;
   var ImgH=ImgH;
   image.src=ImgD.src;
   if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= ImgW/ImgH){
     if(image.width>ImgW){ 
     ImgD.height=(image.height*ImgW)/image.width;   
                                                
     ImgD.width=ImgW;
     }else{
     ImgD.width=image.width;  
     ImgD.height=image.height;
     }
     ImgD.alt="Photo:"+image.width+"¡Á"+image.height;
     }
    else{
     if(image.height>ImgH){ 
     ImgD.width=(image.width*ImgH)/image.height; 
     ImgD.height=ImgH;     
     }else{
     ImgD.width=image.width;  
     ImgD.height=image.height;
     }
     ImgD.alt=""+image.width+"¡Á"+image.height;
     }
    }
} 
//-->