function fullFeedback(page, id)
{
		
		executePhpFile('/custom/blocks/sveciu_knyga/getguestbook.php', 'layertoload=gb&id=' 
		+ id + '&pageno=' + page, 'guestbook_main', 'guestbook_loadingStatus');
		location.href = '#top';
}
function updateFeedbacksList(html)
{
	document.getElementById('guestbook_sarasas').innerHTML = html;
}


function feedbackPage(page)
{
	executePhpFile('/custom/blocks/sveciu_knyga/getguestbook.php', 'layertoload=list&pageno=' + page 
		, 'guestbook_sarasas', 'guestbook_loadingStatus');
}

function updateSendingForm(html)
{
	document.getElementById('guestbook_form').innerHTML = html;
}
function sendFeedback()
{
	bajax.init();
	bajax.call('/custom/blocks/sveciu_knyga/sendfeedback.php'
			, updateSendingForm
			, {'name':document.getElementById('fullname').value
				, 'email': document.getElementById('email').value
				, 'occasion': document.getElementById('occasion').value
				, 'company': document.getElementById('company').value
				, 'year': document.getElementById('year').value
				, 'month': document.getElementById('month').value
				, 'day': document.getElementById('day').value
				, 'feedback': document.getElementById('message').value});
}