// Sets the focus on the main Iframe and sends the print command to the browser.
function printMainFrame() {
	top.mainFrame.focus();
	
	if (top.mainFrame.print) {
		setTimeout("top.mainFrame.print();", 500);
	} else {
		var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
		top.mainFrame.document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
		setTimeout("top.mainFrame.WebBrowser1.ExecWB(6, 1); top.mainFrame.WebBrowser1.outerHTML = '';", 500);
		  
	}
}

function navigate(selectedSection, selectedTop, selectedSubId, baseUrl) {
	parent.document.getElementById('mainFrame').style.height=0;
	parent.document.getElementById('menuFrame').style.height=0;

	top.scroll(0,0);
	
	top.menuFrame.location.href = baseUrl + 'menu.asp?selectedSection=' + selectedSection + '&selectedTop=' + selectedTop + '&selectedSubId=' + selectedSubId
}