﻿
//controlla il codice da trascrivere per il CustomValidator per il campo anti-spam
function CheckCodiceTrascritto(source, arguments) {
	if (arguments.Value + "" == "12345") {
		arguments.IsValid = true;
		return true
	} else {
		arguments.IsValid = false;
		return false
	}
}
function OpenPrivacy() {
	var pageTmp = "/content/privacy.aspx?popUp=true"
	$.fn.colorbox({ href: pageTmp, open: true, height: '550px', width: '600px', iframe: true });
}
