﻿function equal_columns()
			{
	            var a = document.getElementById('rightPart');
	            var b = document.getElementById('leftPart');
	            if (b)
	            {
	                if(b.offsetHeight > a.offsetHeight)
	                {
		                a.style.height = b.offsetHeight + 20 + 'px';
	                }
	                if(b.offsetHeight < a.offsetHeight)
	                {
		                b.style.height = a.offsetHeight + 20 + 'px';
	                }
	            }
				
			}
			
			
	function popup(url, titre, largeur, hauteur, scroll)
  		{
  		window.open(url, titre, 'width=' + largeur + ', height=' + hauteur + ', scrollbars=' + scroll);
  		}
