﻿
function ValidatePassword(source, arguments)
{
    arguments.IsValid=false;
    
    if(arguments.Value.trim().length<6)
		return;
		
    if(arguments.Value.trim().length>20)
		return;
    arguments.IsValid=true;
}

function DelayedRedirect(url, time)
{
    aTimer = window.setTimeout("window.location='" + url + "'", time);    
}