function Soap()
{
}

function edit(class, id)
{
	inputId = document.getElementById("inputId");
	inputTitle = document.getElementById("inputTitle");
	inputDescription = document.getElementById("inputDescription");
	inputDate = document.getElementById("inputDate");
	inputTime = document.getElementById("inputTime");
	
	soap = new Soap();
	object = soap.select(class, id);
	
	inputId.value = id;
	inputTitle.value = object.get("title");
	inputDescription.value = object.get("description");
	inputDate.value = object.get("date");
	inputTime.value = object.get("time");
}

function save(class, id)
{
}

function delete(class, id)
{
	soap = new Soap();
	object = soap.delete(class, id);
}

function loadGoogleAnalytics()
{
	try
	{
		var pageTracker = _gat._getTracker("UA-12333053-1");
		pageTracker._trackPageview();
	}
	catch(e)
	{
	}
}

function onBodyLoad()
{
	loadGoogleAnalytics();
}

