
<!--


function ShowHideBlock(block,act) {

	var block = document.getElementById(block);	

	if (act == "on") {
		block.className = "displayblock";
	} 
	if (act == "off") {
		block.className = "displaynone";
	}

}

function AddRecipeVote() {

	VoteBlock=document.getElementById('Vote');
	PreloadVoteBlock=document.getElementById('PreloadVote');

		VoteBlock.className = "displaynone";
		PreloadVoteBlock.className = "displayblock";

    $('formaddvote').send( {method: 'get', update: 'Vote', encoding: 'windows-1251' } )

setTimeout("VoteBlock.className = 'displayblock';",3000);
setTimeout("PreloadVoteBlock.className = 'displaynone';",3000);


}

function ListMonth(month,year) {

	CalendarBlock=document.getElementById('Calendar');
	PreloadCalendarBlock=document.getElementById('PreloadCalendar');

		CalendarBlock.className = "displaynone";
		PreloadCalendarBlock.className = "displayblock";

new Ajax('/calendar.html', {method: 'get', encoding: 'windows-1251', update: 'Calendar', data: 'cm='+month+'&y='+year}).request();

setTimeout("CalendarBlock.className = 'displayblock';",3000);
setTimeout("PreloadCalendarBlock.className = 'displaynone';",3000);



}

// -->