// Fonction pour redimensionner la fenetre de contenu

function init(){
var divHeight;
var obj = $('site');
var limite = 600
	
	if(obj.offsetHeight){divHeight=obj.offsetHeight;}
	else if(obj.style.pixelHeight){divHeight=obj.style.pixelHeight;}
	/*alert(divHeight)*/
	if(divHeight<limite){obj.style.height=limite+'px'}
	if(typeof(onc)=='function'){ onc(); }
}
window.onload = init

// Vidage du champ VOTRE TEXTE ICI...

function videChamp(ChampaVider){
	if(ChampaVider.value== "Votre message ici...")
	{
		ChampaVider.value="";
	}
}
