// launch new window for library document
function showWindow(RequestedPage) {
	var strWindowName
	strWindowName = "library/" + RequestedPage
	mapWindow = window.open(strWindowName,'', 'width=600px, height=500px, scrollbars=yes')
}

//launch new window for asp file
function showASPWindow(strWindowName) {
	mapWindow = window.open(strWindowName,'', 'width=600px, height=500px, scrollbars=yes')
}

//reload default.asp with page name for server.execute to load
function getPage(PageName) {
	if (PageName != "") {
		window.location = 'default.asp?PageName=' + PageName
		}
	}


