function toggle(id) {
   if (document.getElementById) {
       var cdiv = document.getElementById(id);
       if (cdiv) {
           if (cdiv.className != 'minimized') cdiv.className = 'minimized';
           else cdiv.className = '';
       }
   }
}

function classements()
{
	document.all.classement.src="classement.php";
}

function records()
{
	document.all.classement.src="records.php";
}

function gagnants()
{
	document.all.classement.src="gagnants.php";
}

function cadeaux()
{
	document.location="cadeaux.php";
}

function demo()
{
	document.location="demo.php";
}