﻿function changeType(id) {
    document.getElementById('passwordHolder').innerHTML = '<input type="password" value="" size="15" class="input" id="' + id + '"/>';
    document.getElementById(id).focus();
}
