function Organize() {
var y;
if (self.innerHeight) // all except Explorer
{
	y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
{
	y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
	y = document.body.clientHeight;
}

var mid=document.getElementById('box').offsetHeight;
var top=document.getElementById('top').offsetHeight;
var bot=document.getElementById('bottom').offsetHeight;
var hdr=document.getElementById('header').offsetHeight;
var nws=document.getElementById('news_box').offsetHeight;
if(nws!=60)
	nws = nws+30;


if(y>164+mid)
{
	document.getElementById('box').style.height = y-bot-top+ "px";
	document.getElementById('left').style.height = y-bot-top-hdr-nws+ "px";
	document.getElementById('left_bubbles').style.bottom = 0;
}
else
{
	document.getElementById('left').style.height = mid-hdr-nws+ "px";
	document.getElementById('left_bubbles').style.bottom = 0;
}

}


function insertflash(file,wt,ht) {

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+wt+'" height="'+ht+'">');
document.write('<param name="movie" value="flash/'+file+'" />');
document.write('<param name="quality" value="high" />');
document.write('<param NAME="wmode" Value="Transparent">');
document.write('<embed  src="flash/'+file+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+wt+'" height="'+ht+'"></embed>');
document.write('</object><nobr>');
}
