<!--
//PROTOTYPE GESTION CSS////////////////////////////////////////////////////////////////////////////////////
//PROTOTYPE GESTION CSS////////////////////////////////////////////////////////////////////////////////////
//PROTOTYPE GESTION CSS////////////////////////////////////////////////////////////////////////////////////

//CONSTRUCTOR//////////////////////////////////////////////////////////////////////////////////////////////
function gestionCss(idEvent)
{
this["ElementHtml"]= document.getElementById(idEvent).style;
}

gestionCss.prototype.creationStyle = function(prop,value) 
{
this["ElementHtml"][prop]= value;
}

gestionCss.prototype.setBackground=function(background) 
{
this.creationStyle('background',background);
}

gestionCss.prototype.setDisplay=function(display) 
{
this.creationStyle('display',display);
}

gestionCss.prototype.setVisibility=function(visibility) 
{
this.creationStyle('visibility',visibility);
}
-->