function toHTML()
{
	createCookie('noflash', 1, 365);
	location.reload(true);
}

function toFlash()
{
	createCookie('noflash', '', -1);
	location.reload(true);
}

if (readCookie('noflash')) 
{
	$('#getFlash').attr('href', '#');
	$('#getFlash img').attr('title', $('#getFlash img').attr('alt'));
	$('#getFlash').click(function() {		
  		toFlash();
	});
}

