//These are client side JavaScript functions that may be called by any page that
//inherits from BaseForm.aspx
//Functions in here should relate to client side code associated with the logon/options left section.

function ShowAccountOptions()
{
    window.location = "AccountOptions.aspx";
}

function ShowAccountOptionsRoot()
{
	window.location = "../AccountOptions.aspx";
}

function ShowAccountOptionsAbs()
{
	window.location = "http://www.pictureshare.net/AccountOptions.aspx";
}

