﻿// JScript File
// To display the anthem error
function Anthem_Error(result) 
{
    alert(result.error);
}

// for adjusting the column size so there the same length
function adjSize()
{
	var midHeight =document.getElementById("Middle").clientHeight;
	var lftHeight = document.getElementById("ColumnLeft").clientHeight;
	var rtHeight = document.getElementById("ColumnRight").clientHeight;
	
	//var display = midHeight + " - " + lftHeight + " - " + rtHeight;
	//alert(display);

	if(lftHeight < 445 && rtHeight < 445)
	{
		lftHeight = 445;
	}

	if(lftHeight > rtHeight)
	{
		document.getElementById("ColumnRight").style.height = lftHeight + 'px';
	}

	if(rtHeight > lftHeight)
	{
		document.getElementById("ColumnLeft").style.height= rtHeight + 'px';
	}
		
	//var midHeight =document.getElementById("Middle").clientHeight;
	//var lftHeight = document.getElementById("ColumnLeft").clientHeight;
	//var rtHeight = document.getElementById("ColumnRight").clientHeight;
	//var display = midHeight + " - " + lftHeight + " - " + rtHeight;
	//alert(display);
}//function adjSize()

