var picx = 1;
function Hi(button)
{
	if(button == 1)
	{
		picx--;
		if(picx <= 0)
			{
				picx = 5;
			}
	}
	else
	{
		picx++;
		if(picx > 5)
			{
				picx = 1;
			}
	}			
	picx2 = 'url(../images/photos/'+picx+'.jpg)';
	document.getElementById('pic').style.backgroundImage = picx2;
}
function image()
{
	window.location.href = "index.php?page=photos";
}

function redirect()
{
	setTimeout('redirect2()',  3000);
}

function redirect2()
{
	window.location.href = "index.php?page=accueil";
}
var hide = 0;
function comment(id)
{	
	document.getElementById('accept_comment').style.color = 'white';
	if(hide == 0)
	{
		document.getElementById('lien_add'+id+'').style.color = 'red';
		window.location.href = 'index.php?page=managecomment&id='+id;
		hide = 1;
	}
	else
	{
		document.getElementById('lien_add'+id+'').style.color = 'white';
		hide = 0;
	}
}

function comment_yes(id)
{
	window.location.href = 'index.php?page=managecomment&del=1&id='+id;
}

function comment_no(id)
{
	window.location.href = 'index.php?page=managecomment&del=0&id='+id;
}





