﻿function updateProfile()
{
   var pass1 = null;
   var pass2 = null;
}

function changePass()
{
	var pass1 = new Spry.Widget.ValidationPassword("pass1",{minChars:6});
	var pass2 = new Spry.Widget.ValidationConfirm("pass2", "pass1", {validateOn: ['blur']});	
}

function ddlImages_previewImage(sel, imgId)
{
    var img = document.getElementById(imgId);

    if ( img )
    {
        if (sel.selectedIndex > -1)
        {
            img.src = 'DisplayImage.ashx?path=' + sel.options[sel.selectedIndex].value;
        }
    }
}