function PopupAlert(msg) {
       alert("!!! \ "+msg);
}

function PopupProc(title,linkpage,w,h)
{
    farwindow=window.open(linkpage, title, 'top=50,left=50,width='+w+',height='+h+',toolbar=no,scrollbars=yes,status=no,menubar=no,resizable=no');
	farwindow.focus() 

	if (farwindow !=null)
	{
		if (farwindow.opener == null)
		{
		farwindow.open=self;
		}
		farwindow.location.href=linkpage ;
	}
}

function PopupProcConfirm(title,linkpage,w,h,msg)
{
	if (	confirm("!!! \""+msg+"ÇÏ½Ã°Ú½À´Ï±î?"))
	{
	farwindow=window.open(linkpage, title, 'top=50,left=50,width='+w+',height='+h+',toolbar=no,scrollbars=no,status=no,menubar=no,resizable=no');
	farwindow.focus() 

		if (farwindow !=null)
		{
			if (farwindow.opener == null)
			{
			farwindow.open=self;
			}
			farwindow.location.href=linkpage ;
		}
	}
}

function submitFORM(fm,url)
{
	var url;
	var fm;
	document.frm.action = url;
	document.frm.submit();
}

function showToolTip(e,text){ 
      document.all.ToolTip.innerHTML="<table><tr><td class=ToolTipTD>"+text+"</td></tr></table>"; 
      ToolTip.style.pixelLeft=(e.x+15+document.body.scrollLeft); 
      ToolTip.style.pixelTop=(e.y+document.body.scrollTop); 
      ToolTip.style.visibility="visible"; 
} 

function hideToolTip(){ 
      ToolTip.style.visibility="hidden"; 
} 

	function tooltips_pos(){ 
	tooltips.style.posLeft = event.x + 30 + document.body.scrollLeft 
	tooltips.style.posTop = event.y - 50 + document.body.scrollTop 
	} 

	function tooltips_on(str,str2){ 
	var text 
	text ="<table width=300 align=center border=1 bordercolor=black cellpadding=3 cellspacing=0 style='border-collapse: collapse' BGCOLOR="+str2+"><TD ALIGN=LEFT><FONT COLOR=black>"+str+"</FONT></TD></TABLE>";
	tooltips.innerHTML=text 
	} 

	function tooltips_off(){ 
	tooltips.innerHTML='' 
	} 