function LoginDialog()
{
	Dialog.apply(this, ["Login"]);
	
	this._init();
};

LoginDialog.prototype = new Dialog();

LoginDialog.prototype._init = function()
{
	this.getContentPane().domContainer.innerHTML = "<table cellspacing='2'><tr><td class='label'>Username</td><td><input class='textarea'></td></tr><tr><td class='label'>Password</td><td><input class='textarea' type='password'></td></tr></table>";
	this.setSize(320, 150);
}
