var next_button = 0;
var reg_button = 0;
var rec_button = 0;
var app_button = 0;
var button_timeout = null;

function press_button(name, tag_id) {	if(name == 'next')
	{		if(next_button == 1) {			document.getElementById(tag_id).src = 'http://funburg.ru/images/' + name + '_pressed.jpg';
		}
	}
	else {		document.getElementById(tag_id).src = 'http://funburg.ru/images/' + name + '_pressed.jpg';	}
}

function unpress_button(name, tag_id) {	button_timeout = setTimeout('unpress_button_go("' + name + '", "' + tag_id + '")', 50);}

function unpress_button_go(name, tag_id) {	try	{document.getElementById(tag_id).src = 'http://funburg.ru/images/' + name + '.jpg';} catch(e) {};}