////////////////////////////
//  JavaScript Document   //
//  Copyright Netools.fr  //
////////////////////////////

function OuvreBlock(PartieSelect) 
{
var monElement = document.getElementById(PartieSelect);

if(monElement.style.display == 'none') 
	{
		monElement.style.display= 'block';
	}
	
 else
	{
	 	monElement.style.display= 'none';
	}
}

function Add_plus_Block(PartieSelect) 
{
var monElement = document.getElementById(PartieSelect);

if(monElement.style.display == 'none') 
	{
		monElement.style.display= 'block';
	}
	
}

function Add_moins_Block(PartieSelect) 
{
var monElement = document.getElementById(PartieSelect);

if(monElement.style.display != 'none') 
	{
		monElement.style.display= 'none';
	}
	
}

function Change_Class(IdElement, ClassElement) 
{
var btn = document.getElementById(IdElement);
btn.className= ClassElement;
}

function Base_Allpage(PartieSelect) 
{	
	
window.addEvent('domready', function() {
	
	var my_index = new Fx.Slide('m_index');
	var my_present = new Fx.Slide('m_present');
	var my_sites = new Fx.Slide('m_sites');
	var my_clients = new Fx.Slide('m_clients');
	var my_contact = new Fx.Slide('m_contact');
	var my_espace = new Fx.Slide('m_espace');
	var my_utilitaires = new Fx.Slide('m_utilitaires');
	var my_admin = new Fx.Slide('m_admin');
	
	if(PartieSelect == 'clients')
	{
		my_index.hide();
		my_present.hide();
		my_sites.hide();
		my_contact.hide();
		my_espace.hide();
		my_utilitaires.hide();
		my_admin.hide();
	}
	
	else if(PartieSelect == 'contact')
	{
		my_index.hide();
		my_present.hide();
		my_sites.hide();
		my_clients.hide();
		my_espace.hide();
		my_utilitaires.hide();
		my_admin.hide();
	}
	
	else if(PartieSelect == 'espace')
	{
		my_index.hide();
		my_present.hide();
		my_sites.hide();
		my_clients.hide();
		my_contact.hide();
		my_utilitaires.hide();
		my_admin.hide();
	}
	
	else if(PartieSelect == 'admin')
	{
		my_index.hide();
		my_present.hide();
		my_sites.hide();
		my_clients.hide();
		my_espace.hide();
		my_utilitaires.hide();
		my_contact.hide();
	}
	
	else
	{
		my_present.hide();
		my_sites.hide();
		my_clients.hide();
		my_contact.hide();
		my_espace.hide();
		my_utilitaires.hide();
		my_admin.hide();
	}
});

}

////////////////////////////
//  JavaScript Document   //
//  Copyright Netools.fr  //
////////////////////////////