// 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, page)
{
object11=document.getElementById(columnid1);
object22=document.getElementById(columnid2);
page11=document.getElementById(page);
object44=document.getElementById('column1');

if (object11.offsetHeight)
	{
	hh1=object11.offsetHeight;
	hh2=object22.offsetHeight;
	ww1=object11.offsetWidth;
	ww2=object22.offsetWidth;
	pp1=page11.offsetWidth;
	}

if (hh1>hh2){biggestb=hh1;}
else {biggestb=hh2;}

if (biggestb<425)
	{
	object11.style.height= 425 +'px';
	object22.style.height= 425 +'px';
	}
else{
	object11.style.height= biggestb +'px';
	object22.style.height= biggestb +'px';
	}

ww2=ww2-1;

object22.style.width= ww2 +'px';


if (navigator.appName.indexOf('Netscape') != -1)
	{
	sss1 = object44.offsetWidth - 3;
	object44.style.width= sss1 +'px';
	document.body.style.margin = '5px';
	}
	

}

function topnewswidth(id)
{
	object111=document.getElementById('column3');
	object222=document.getElementById(id);
	object222.style.width=(object111.offsetWidth-20)+ 'px';	
}

