var cr = 0;

function apri_credits()
{
	with (document) {
		if (cr == 0) {
	    getElementById('links_credits').style. display = "block";
	    cr = 1;
		} else {
		  getElementById('links_credits').style. display = "none";
		  cr = 0;
		}
	}
}

