﻿// JavaScript Document
if(typeof parkside == "undefined") var parkside = new Object();
if(typeof parkside.password == "undefined") parkside.password = new Object();

// Constructor
parkside.password = function() {
}

/// Class members
parkside.password.prototype = {
/// Methods
	switchPassword: function(radiob, rec) {
		if (!document.getElementById)
			return;

		document.getElementById("user_password").value = "";
		document.getElementById("password_retype").value = "";
		document.getElementById("edit_customer_form_bottom_link").style.display = "none";
		document.getElementById("edit_customer_form_bottom").style.display = "block";
	}
}

password = new parkside.password();


