function pocni_upisivanje(id, tekst)
{
	if (tekst == undefined) return;

	if ($(id).value == tekst)
	{
		$(id).value = '';
		$(id).style.fontStyle = 'normal';
	}
}

function zavrsi_upisivanje(id, tekst)
{
	if (tekst == undefined) return;

	if ($(id).value == '')
	{
		$(id).value = tekst;
		$(id).style.fontStyle = 'italic';
	}
}


function save_comment(url)
{
	if ($('data_nickname').value == '' || $('data_nickname').value == 'Nadimak...' || $('data_comment').value == '' || $('data_comment').value == 'Komentar...')
		alert('Unesite sve tražene podatke prije unosa komentara.');
	else
		new Ajax.Request(url, {method: 'post', parameters: Form.serialize($('form')), onSuccess: function(r) {$('popis_komentara').innerHTML += r.responseText; $('data_nickname').value = 'Nadimak...'; $('data_nickname').style.fontStyle = 'italic'; $('data_comment').value = 'Komentar...'; $('data_comment').style.fontStyle = 'italic'; $('number_of_comments').innerHTML = parseFloat($('number_of_comments').innerHTML) + 1; alert('Hvala na komentaru!');}});
}

function save_shoutbox_comment(url, comment)
{
	if ($('shoutbox_text').value != '' && $('shoutbox_text').value != 'Poruka...')
		new Ajax.Request(url, {method: 'post', parameters: Form.serialize($('shoutbox_form')), onSuccess: function(r) {$('shoutbox_comments').innerHTML = r.responseText; $('shoutbox_text').value = 'Poruka...'; $('shoutbox_text').style.fontStyle = 'italic';}});
}

function popUp(URL, WIDTH, HEIGHT, SCROLL, LEFT, TOP, sId)
{
	var day = new Date();
	
	window.open(URL, day.getTime(), 'scrollbars=' + SCROLL + ',width=' + WIDTH + ',height=' + HEIGHT + ',left=' + LEFT + ',top=' + TOP + ', resizable=yes');
}
