/*...........................................................
.	Compagny	:	Bytag									.
.	Country		:	Netherlands								.
.	Owner		:	Andre Smol								.
.	Date		:	22-10-2009								.
............................................................*/

function symBloks(elmA , elmB , elmC , heightA , heightB)
{
	var objDivIntern	=	document.getElementById(elmA);
	var objDivInternR	=	document.getElementById(elmB);
	var objDivInternL	=	document.getElementById(elmC);
	var objDivInternHeight	=	objDivIntern.style.height;
	var objDivInternRHeight	=	objDivInternR.style.height;
	var objDivInternLHeight	=	objDivInternL.style.height;
	objDivInternHeight	=	parseInt(heightA);
	objDivInternRHeight	=	parseInt(heightB);
	//alert(objDivInternHeight);
	if(objDivInternHeight > objDivInternRHeight)
	{
		objDivIntern.style.height	=	objDivInternHeight+"px";				
		objDivInternR.style.height 	=	objDivInternHeight+"px";
		objDivInternL.style.height 	=	objDivInternHeight+"px";
	}
	
}

function autoControle(elmA,elmB)
{
	var objReferentie	= document.getElementById(elmA);
	var objSlave		= document.getElementById(elmB);
	if(objSlave.clientHeight < objReferentie.clientHeight)
	{
		objSlave.style.height = parseInt(objReferentie.clientHeight)+"px";		
	}
	
}

	
