
//Updates the Frame Contents when the Select Box is used
function loadnewframe (form) {

		var theTarget = form.navi.options[getSelectedValue()].value;

		updateSelectBoxAndiFrame(theTarget);

		//This Should work on Mozilla and IE!
		//var theFrame = document.getElementById('pageFrame');
		frames['pageFrame'].location.href = form1.navi.options[getSelectedValue()].value;

}

//Updates the framesize and drop box when back button is used
function resize_iframe() {

		var theFrame = frames['pageFrame'].location.href;
		updateSelectBoxAndiFrame(theFrame);

      	//updateSelectBoxAndiFrame(document.getElementById('pageFrame').location.href);
}
