function chkTextNull(evt){
	if ($(evt).val()=="") {
		//$("#dialog").append($(evt+'_LABEL').text()+'不可空白!!<br />');
		$(evt).addClass('focus');
		$(evt+'_ERRMSG').html('必要欄位不可空白!!');
		return false;
	}
	return true;
}

function chkIsNum(evt)
{
	var regExp=/^[0-9]*$/;
	if (!regExp.test($(evt).val()))
	{
		$(evt).addClass('focus');
		$(evt+'_ERRMSG').html('必須為數字。');
		return false;
	}
	return true;
}


function PopUp(_url,_width,_height)
{
	window.open(_url,'_blank','height='+_height+', width='+_width+', resizable=0, status=0, toolbar=0 ,scrollbars=1, location=0,menubar=0,directories=0' );
}

function chkTextNull2(evt){
	if ($(evt).val()=="") {
		//$("#dialog").append($(evt+'_LABEL').text()+'不可空白!!<br />');
		$(evt).addClass('focus').focus();
		$('<div class=\"errmsg\"> 必要欄位不可空白!!</div>').insertAfter(evt);
		return false;
	}
	return true;
}
