// JavaScript Document
var hh1=0;
var hh2=0;
var hh3=0;
var ww1=0;
var ww2=0;
var ww3=0;
var pp1=0;
var biggestb=0;
var www3=0;
var sss1=0;

function columnheight(columnid1, columnid2, columnid3, page)
{
object11=document.getElementById(columnid1);
object22=document.getElementById(columnid2);
object33=document.getElementById(columnid3);
page11=document.getElementById(page);
object44=document.getElementById('column1');
scrollwin=document.getElementById('scrolling');

if (object11.offsetHeight)
	{
	hh1=object11.offsetHeight;
	hh2=object22.offsetHeight;
	hh3=object33.offsetHeight;
	ww1=object11.offsetWidth;
	ww2=object22.offsetWidth;
	ww3=object33.offsetWidth;	
	pp1=page11.offsetWidth;
	}

if (hh1>hh2 && hh1>hh3){biggestb=hh1;}
if (hh2>hh1 && hh2>hh3){biggestb=hh2;}
if (hh3>hh1 && hh3>hh2){biggestb=hh3;}

if (biggestb<425)
	{
	object11.style.height= 425 +'px';
	object22.style.height= 425 +'px';
	object33.style.height= 425 +'px';
	}
else{
	object11.style.height= biggestb +'px';
	object22.style.height= biggestb +'px';
	object33.style.height= biggestb +'px';
	}

ww3=ww3-1;

object33.style.width= ww3 +'px';


if (navigator.appName.indexOf('Netscape') != -1)
	{
	sss1 = object44.offsetWidth - 3;
	object44.style.width= sss1 +'px';
	document.body.style.margin = '5px';
	}
	

}

function topnewswidth(id)
{
	bject111=document.getElementById('column3');
	object222=document.getElementById(id);
	if (object222) {object222.style.width=(object111.offsetWidth-20)+ 'px';	}
}

function columnheight2(columnid1, columnid4, page)
{
object11=document.getElementById(columnid1);
object44=document.getElementById(columnid4);
page11=document.getElementById(page);


if (object11.offsetHeight)
	{
	hh1=object11.offsetHeight;
	hh4=object44.offsetHeight;
	ww1=object11.offsetWidth;
	ww4=object44.offsetWidth;
	pp1=page11.offsetWidth;
	}

if (hh1>hh4){biggestb=hh1;}
else {biggestb=hh4;}

if (biggestb<425)
	{
	object11.style.height= 425 +'px';
	object44.style.height= 425 +'px';
	}
else{
	object11.style.height= biggestb +'px';
	object44.style.height= biggestb +'px';
	}

ww4=ww4-1;

object44.style.width= ww4 +'px';


if (navigator.appName.indexOf('Netscape') != -1)
	{
	sss1 = object44.offsetWidth - 3;
	object44.style.width= sss1 +'px';
	document.body.style.margin = '5px';
	}
	

}
