<!--
/*
		function css_fix(){
			if(document.all)
				document.styleSheets[1].addRule('div, img', 'behavior: url(../css/iepngfix.htc)');
		}
*/	
		function CloseSysMsg(){
			if(D("SYSMSG"))
					D("SYSMSG").parentNode.removeChild(D("SYSMSG"));
		}

		function ForgetPassword(){
			var email = prompt("In order to reset your password, we need the E-Mail Address you used to register to your account.\nPlease enter your e-mail address here...", "")
			if(!isNull(email)){
				if(email.isEMail()){
					var rx = /[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})/i;
					window.location = "/PasswordReset/"+email.match(rx)[0].urlencode();
				}
				else{
					alert("Invalid E-Mail Address format!");
					ForgetPassword();
				}
			}
		}
-->