/**
* Nom: gd.js
* @author Draedrus
*/

function popup(url, name, width, height)
{
	width=width==''?540:width;
	height=height==''?400:height;
	window.open(url, name, config='height=' + height + ', width=' + width + ', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directory=no, status=no')
}

function changeSrc(id,url)
{
	Img=document.getElementById(id);
	Img.src=url;
}

function redirect_delay(Time,url)
{
	window.setTimeout(document.location.href=url,Time*1000);
}

function redirect(url)
{
	window.location=url;
}

function ChangeContenu(id,contenu)
{
	Element=document.getElementById(id);
	Element.innerHTML=contenu;
}

