﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
/// <reference path="jquery.validate.min-vsdoc.js" />


$(function() {
	var forgotPasswordPanel = $("#ForgotPasswordPanel");

	initialize();

	var email = $("#email"), tips = $(".validateTips");

	$("#Register").click(function() {
		window.location = '/Account/Register';
	});

	$("#ForgotPassword").click(function() {
		forgotPasswordPanel.dialog({
			modal: true,
			width: 350,
			title: 'Forgot Password',
			buttons: {
				'Submit': function() {

					if (checkRegexp(email, /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i, "eg. user@yourcompany.com"));
					{ 
						// Send an Email
					
					}
				},
				Cancel: function() {
					$(this).dialog('close');
				}
			},
			resizable: false
		});
	});



	function initialize() {
		$("#ForgotPasswordPanel").hide();
		$(".success").hide();
	}


	function checkRegexp(o, regexp, n) {
		if (!(regexp.test(o.val()))) {
			o.addClass('ui-state-error');
			updateTips(n);
			return false;
		} else {
			return true;
		}
	}


	function updateTips(t) {
		tips
				.text(t)
				.addClass('ui-state-highlight');
//		setTimeout(function() {
//			tips.removeClass('ui-state-highlight', 1500);
//		}, 500);
	}


});
