// JavaScript Document

/*var temp=window.innerHeight;
alert(temp);*/

function nullObject(obj){ 
	if (obj == null)
		return {offsetHeight:0, style:{height:0}}
	return obj;
}

function fixColumns(){
	/*var c1 = document.getElementById("colonneA");
	var c2 = document.getElementById("colonneB");
	var c3 = document.getElementById("colonneC");
	var c4 = document.getElementById("colonneD");
	
	c1 = nullObject(c1);
	c2 = nullObject(c2);
	c3 = nullObject(c3);
	c4 = nullObject(c4);
	
	//alert(c1.offsetHeight);
	//alert(c2.offsetHeight);
	
	if(c1.offsetHeight && c2.offsetHeight && c3.offsetHeight && c4.offsetHeight ){
		maxheight=Math.max(c1.offsetHeight,c2.offsetHeight,c3.offsetHeight,c4.offsetHeight)+'px';
	}

	var max2 = Math.max(c1.offsetHeight,c2.offsetHeight,c3.offsetHeight,c4.offsetHeight)+'px';			
	c1.style.height = max2;
	c2.style.height = max2;	
	c3.style.height = max2;	
	c4.style.height = max2;*/



	/*var c1 = document.getElementById("colonneA");
	var c2 = document.getElementById("colonneB");
	var c3 = document.getElementById("colonneC");
	var c4 = document.getElementById("colonneD");
	
	c1 = nullObject(c1);
	c2 = nullObject(c2);
	c3 = nullObject(c3);
	c4 = nullObject(c4);
	
	//alert(c1.offsetHeight);
	
	//	alert(c2.offsetHeight);
	
	if(c1.offsetHeight && c2.offsetHeight && c3.offsetHeight && c4.offsetHeight ){
		maxheight=Math.max(c1.offsetHeight,c2.offsetHeight,c3.offsetHeight,c4.offsetHeight)+'px';
	}

	var max2 = Math.max(c1.offsetHeight,c2.offsetHeight,c3.offsetHeight,c4.offsetHeight)+'px';			
	
	c1.style.height = max2;
	c2.style.height = max2;	
	c3.style.height = max2;	
	c4.style.height = max2;*/
	
}
 
