﻿// use this in one place only - the top level launch page
// pass in ?./path/to/file.html
window.onload=function() {
	var searchPage = document.location.search;
	if(searchPage != '') {
		top.frames[1].document.location.href = searchPage.substring(searchPage.lastIndexOf('?') + 1, searchPage.length);
	}
}

