// fill space
var flash = '/images/template/temp' + Math.round((Math.random())*8) + '.swf';
function makePageEqual() {

	var column_1_height = document.getElementById('column_1').offsetHeight;
	var column_2_height = document.getElementById('column_2').offsetHeight;
	var column_3_height = document.getElementById('column_3').offsetHeight;
	var difference_2_3 	= column_2_height - column_3_height;

	var column_23_height = document.getElementById('column_2_3').offsetHeight;
	var difference_1_23 = column_1_height - column_23_height;

	if(Math.abs(difference_2_3) > 20) {
		if(difference_2_3 > 0) {
			div_2_3_id = 'fill_3'; 
			document.getElementById(div_2_3_id).style.marginRight = '10px';
			html_2_3_content = '<div style="width:298px; height:' + (Math.abs(difference_2_3) - 12) + 'px; z-index:1"><embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false" width="298" height="' + (Math.abs(difference_2_3) - 12) + '"></embed></div>';
		} 
		else {
			div_2_3_id = 'fill_2'; 
			html_2_3_content = '<div style="width:218px; height:' + (Math.abs(difference_2_3) - 12) + 'px; z-index:1"><embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false" width="218" height="' + (Math.abs(difference_2_3) - 12) + '"></embed></div>';
		}
		document.getElementById(div_2_3_id).style.height = (Math.abs(difference_2_3) - 12) + 'px';
		document.getElementById(div_2_3_id).style.borderWidth = '1px';
		document.getElementById(div_2_3_id).style.borderStyle = 'solid';
		document.getElementById(div_2_3_id).style.borderColor = '#CCCCCC';
//		document.getElementById(div_2_3_id).innerHTML = html_2_3_content; 
		document.getElementById(div_2_3_id).style.display = 'block';
	}

	if(Math.abs(difference_1_23)>20) {
		if(difference_1_23>0) {
			div_id = 'fill_2_3'; 
			html_content = '<div style="width:528px; height:' + (Math.abs(difference_1_23) - 12) + 'px; z-index:1"><embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false" width="528" height="' + (Math.abs(difference_1_23) - 12) + '"></embed></div>';
		}
		else {
			div_id = 'fill_1'; 
			document.getElementById(div_id).style.marginLeft = '10px';
			html_content = '<div style="width:438px; height:' + (Math.abs(difference_1_23) - 12) + 'px; z-index:1"><embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false" width="438" height="' + (Math.abs(difference_1_23) - 12) + '"></embed></div>';
		}
		document.getElementById(div_id).style.marginRight = '10px';
		document.getElementById(div_id).style.height = (Math.abs(difference_1_23) - 12) + 'px';
		document.getElementById(div_id).style.borderWidth = '1px';
		document.getElementById(div_id).style.borderStyle = 'solid';
		document.getElementById(div_id).style.borderColor = '#CCCCCC';
//		document.getElementById(div_id).innerHTML = html_content; 
		document.getElementById(div_id).style.display = 'block';
	}

}
