
function formatcentercell() {
	
	var windowHeight = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
	centerCellHeight = windowHeight - 168;


	document.write('<style type="text/css">');
	document.write('<!--');
	document.write('.centercell {');
	document.write('	background:#333333 url("img/floral_bg.gif");');
	document.write('	font-family:verdana;');
	document.write('	font-weight:bold;');
	document.write('	text-decoration:none;');
	document.write('	color:#FFFFFF;');
	document.write('	font-size:11px;');
	document.write('	height:'+centerCellHeight+'px;');
	document.write('}');
	document.write('//-->');
	document.write('</style>');
}


function reformatcentercell() {
	
	var windowHeight = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
	centerCellHeight = windowHeight - 168;
	
	document.getElementById('centercell').style.height = centerCellHeight+'px';
	document.getElementById('flashcontent').style.height = centerCellHeight+'px';
}
