function initSwitchAccountPopUpLogin()
{
	$('#switchAccountWindow').dialog({ bgiframe: true,modal: true, autoOpen: false, title: 'Choose Account To Login As', width:570, 
	buttons: {
		"Select Account": function() {
				document.forms["frmAccountsPopUp"].submit();		
		}
	}
	});
}

function showSwitchAccountPopUpLogin()
{
	$('#switchAccountWindow').dialog('open');
}


