function setTall() {
	

    
    if (document.getElementById) { // Do you know the DOM?
		var divs = new Array(document.getElementById('navigation'), document.getElementById('page'),document.getElementById('container')); //, document.getElementById('main')
		var maxHeight = 0;

		for (var i = 0; i < divs.length; i++) { // Get the height of the tallest column
			if(divs[i] != null)
			{
				if (divs[i].offsetHeight > maxHeight) {
					maxHeight = divs[i].offsetHeight - 0;
				}
			}
		}
        
		if(maxHeight < 1000)
		{
			maxHeight = 1000;
		}
	    
        document.getElementById('navigation').style.height= maxHeight+ 'px';
        document.getElementById('page').style.height=maxHeight + 'px';

        		document.getElementById('container').style.height = maxHeight + 'px';

		if (document.getElementById('navigation').offsetHeight > maxHeight) { // is the size of the container correct?
			// correct padding/margin if needed
			
			if(divs[i] != null)
			{
		//	document.getElementById('navigation').style.height = (maxHeight - (divs[i].offsetHeight - maxHeight)) + 'px';
			}
		}
		if (document.getElementById('container').offsetHeight > maxHeight) { // is the size of the container correct?
			// correct padding/margin if needed
			if(divs[i] != null)
			{
		//	document.getElementById('container').style.height = (maxHeight - (divs[i].offsetHeight - maxHeight)) + 'px';
			}
		}
	}
}

window.onload = function() {
	//setTall();
}

//window.onresize = function() {
//   
//   var ieversion =0;


   
  //     if (navigator.appVersion.indexOf("MSIE") != -1)
    //   {      // bah, IE again, lets downgrade version number
                    ieversion = parseFloat(navigator.appVersion.split("MSIE")[1]);
     //  }     
      

//if(navigator.appName=="Microsoft Internet Explorer"&& ieversion ==6)
  //  {

    //}else
   // {
   // document.location.href = document.location.href;
    //}
//}

