function Restrict(pattern)
{
	var iKeyCode, strKey;
	iKeyCode = event.keyCode;
	strKey = String.fromCharCode(iKeyCode);
	if (!pattern.test(strKey))
	{
		return false;
	}				
	return true;
}

