function launchgotit() {
	//Get screen width
	tmpwidth = self.screen.availWidth;
	//Get screen height
	tmpheight = self.screen.availHeight;
	//is there a get string for records or collections?
	var tmpget = '';
	var pageloc = new String(window.location);
	var getRecLoc = pageloc.search(/\?records\=/);
	var getColLoc = pageloc.search(/\?collections\=/);
	//put the get string into the new url
	if (getRecLoc != -1) {
		tmpget = '&Collection::Records::results='+pageloc.substr(getRecLoc+9)
	} else if (getColLoc != -1) {
		tmpget = '&Collection::Collections::results='+pageloc.substr(getColLoc+13)
	}
	//Open program window
	newwindow = window.open('launcher.php?tmp='+String(Math.random())+tmpget, 'Got_It', 'status,resizable,left=0,top=0,width='+tmpwidth+',height='+tmpheight+',screenX=0,screenY=0');
	//Move window to top-left and resize it to take up the maximum available space
	newwindow.moveTo(0,0);
	newwindow.resizeTo(tmpwidth,tmpheight);
	//Set the window as focussed
	newwindow.focus();
}