
// Funkcja pomocnicza
function $(id)
{
	return document.getElementById(id);
}


var app = new Object();

app.main = function()
{
	location.href = base_href+"account/intro";
}

app.logout = function()
{
	location.href = base_href+"frontend/logout"; 
}

app.account = function()
{
	location.href = base_href+"account"; 
}

app.applications = function()
{
	location.href = base_href+"users/show_new_users_group"; 
}

app.groups = function()
{
	location.href = base_href+"users/groups"; 
}

app.mailing = function()
{
	location.href = base_href+"mailing"; 
}

app.content = function()
{
	location.href = base_href+"pages"; 
}

app.gallery = function()
{
	location.href = base_href+"gallery"; 
}

app.users = function()
{
	location.href = base_href+"users"; 
}

app.hostessy = function()
{
	location.href = base_href+"listaHostess"; 
}

app.settings = function()
{
	location.href = base_href+"settings"; 
}

app.login = function()
{
	location.href = base_href+"logowanie"; 
}

app.register = function()
{
	location.href = base_href+"rejestracja"; 
}

app.about = function()
{
	location.href = base_href+"o-systemie"; 
}
