function HelpClick(evt,id,height,width,content)
{
    var myEvent = evt?evt:(window.event?window.event:null)
    var myX = myEvent.x ? myEvent.x : myEvent.pageX; 
    var myY = myEvent.y ? myEvent.y:myEvent.pageY; 
    
    var container=document.createElement("div");
    container.id=id
    
    topHeight=0.7*height+"px"
    bottomHeight=0.3*height+'px'
    container.innerHTML="<table><tr style='height:"+topHeight+"'><td>"+content+"</td></tr> <tr onclick=\"document.getElementById('"+id+"').style.display='none'\" style='cursor:pointer;height:"+bottomHeight+";'><td><span>[¹Ø±Õ]</span> </td></tr></table>";
    container.style.left=myX+"px"
    container.style.top=myY+"px"
    container.style.position="absolute"
    container.style.width=width+"px"
    container.style.height=height+"px"
    container.style.border="solid 1px #619edc"
    container.style.background="#fff"
    
//    container.onmouseout=function()
//    {
//        this.style.display="none"
//    }
    
    container.style.zIndex=1001
   
    if(document.getElementById(id)==null)
    {
        document.body.appendChild(container)
        return;
    }
    
     if(document.getElementById(id).style.display=="")
        document.getElementById(id).style.display="none"
    else
        document.getElementById(id).style.display=""
}
