function light_input(id)
{
	document.getElementById(id).style.border='1px solid #666666';
}

function unlight_input(id)
{
	document.getElementById(id).style.border='1px solid #bfbfbf';
}

function voteFunc(num, bid)
{
	var url = 'http://ogsm.pl/ajax/glosuj/value/'+num+'/tid/'+bid;

	var myAjax = new Ajax.Request(
		url,
		{
			method: 'get',
			onComplete: showResponse
		});
}

function showResponse(Request)
{
	alert(Request.responseText);
}
