// set cell's height on the start

if (!document.layers) {
	obj = "cellFlashBosco";
	if (document.body && document.body.style && document.getElementById) { theObj = document.getElementById(obj);} else if (document.body && document.body.style && document.all) {theObj = document.all(obj);} else if (document.layers) {theObj = seekLayer(document, obj);}
	scrWidth = (document.getElementById && !document.all)? window.innerWidth : (document.body && document.body.style && document.all)? document.body.clientWidth : 800;
	scrHeight = (document.getElementById && !document.all)? window.innerHeight : (document.body && document.body.style && document.all)? document.body.clientHeight : 600;
	flashWidth = parseInt(scrWidth * 54 / 100);
	flashHeight = parseInt(scrWidth * 54 / 100 / 2.50909);
	cellHeight = parseInt(scrHeight * 35 / 100);
	if (flashHeight > 220 && scrHeight < 628) {
		cellHeight = 220;
		flashHeight = 220;
		flashWidth = 552;
	}
	if (flashHeight > cellHeight) {
		flashHeight = cellHeight;
		flashWidth = flashHeight * 2.50909;
	}
	theObj.setAttribute("height", cellHeight + "px");
}

