Language.Phrase in custom form validate

Hi,

I want to get custom message from language xml file in Form_CustomValidate function as shown below but I hit an error “Uncaught SyntaxError: Unexpected identifier”.Please advise,
TIA
Wilson

// Form_CustomValidate event
fs_quotationadd.Form_CustomValidate = function(fobj) { // DO NOT CHANGE THIS LINE!

// Your custom validation code here, return false if invalid.
var eMsg = @Html.Raw(Language.Phrase("askconfirmsave")); 

 // ask before save
var strconfirm = confirm(eMsg);
	if (strconfirm == true) {
		return true;
	} else {
		return false;

}
}

Just use the client side language phrase: ew.language.phrase(“…”)Make sure your language phrase in the language file is defined with: client=“1”

Thanks Michael, I got it!