function formatBox(id, w, h, pos, l, t, b, z, c)
{
	var box;
	if (document.getElementById) {
		//alert('getElementById')
		box = document.getElementById(id).style;
	}
	else if (document.all) {
		//alert('all')
		box = document.all[id].style;
	}
	else if (document.layers) {
		//alert('layers')
		box = document.layers[id];
	}
	else {
		//alert ('oops')
	}

	box.zIndex = z;
	box.position = pos;
	box.width = w;
	box.height = h;
	box.left = l;
	box.top = t;
	box.border = b;
	box.backgroundColor = c;
}

