// JavaScript Document
<!--
	var isMainPageLoaded = false;
		
	function init() {
		//Create a timer to check to see if the bottom frame is loaded
		//before calling into it.
		if (top.BottomFrame.isBottomFrameLoaded) {
			top.BottomFrame.setArrows();
		} else {
			setTimeout("init()", 10);
		}
	}
		
//-->
