function Numeral_Check(num)   {

  if(!num)  { return false; }

  nc = new RegExp("\^[0-9+][0-9- +]+[0-9]\$");
  if(!nc.test(num))  { return false; }

return true;
}


function Korean_Check(strIn)   {
  var j =0;
  if(!strIn)  { return false; }

  for(i=0 ; i < strIn.length ; i++)  {
	ch = strIn.charAt(i);
	if((ch >= "¤¿" && ch <= "È÷") || (ch >= "¤¡" && ch <= "¤¾"))  {
		j++;
	}
  }

if(j == 0)  { return false; }
else { return true; }
}


