// JavaScript Document
function openpopup(){
	var fenetre=window.open('', 'popup', 'scrollbars=1,width=750,height=850,left=' + ((screen.width - 750)/2) + ',top=' + ((screen.height - 850)/2));	
	fenetre.focus();
	}


function show()
{
	for (var i=0; i < arguments.length; i++)
	{
		document.getElementById(arguments[i]).style.display='block';
	}
	return false;
}
function hide()
{
	for (var i=0; i < arguments.length; i++)
	{
		document.getElementById(arguments[i]).style.display='none';
	}
	return false;
}
function setText(id,text)
{
	document.getElementById(id).innerHTML=text;
	return false;
}

