﻿$(document).ready(function(){
    init();
})

var init = function() {
	try {
		$(".login_pass").focus(function(){
			  
			theid= $(this).attr("id");
			thename = $(this).attr("name");
			$(this).replaceWith("<input name='"+thename+"' id='"+theid+"' class='login_pass' type='password' />")
			$(".login_pass").focus();
		});
	}
	catch(err) {}
}

function clearTextBox(sCompare, txt) {
    var txtBox = dnnPrefix + "_" + txt;
    if (document.getElementById(txtBox).value == ("<" + sCompare + ">")) {
        document.getElementById(txtBox).value = "";
    }
    return false;
}