var passwordEditor=new Object();

passwordEditor.initialize=function()
{
	var passwordDiv=document.getElementById("passwordDiv");
	var passwordTable=document.getElementById("passwordTable");
	passwordTable.style.width=document.body.scrollWidth;
	passwordTable.style.height=document.body.scrollHeight;
	var passwordInputer=document.getElementById("passwordEditor_inputer");
	passwordEditor.m_passwordDiv=passwordDiv;
	passwordEditor.m_passwordTable=passwordTable;
	passwordEditor.m_passwordInputer=passwordInputer;
	passwordEditor.hidePasswordEditor();
};

passwordEditor.hidePasswordEditor=function()
{
	var passwordDiv=passwordEditor.m_passwordDiv;
	var passwordTable=passwordEditor.m_passwordTable;
	passwordDiv.removeChild(passwordTable);
};