function launchWindow(thisURL)
{
	if (thisURL!=null)
		{
		var bigWindow=window.open(thisURL, 'newWindow', 'directories=1, location=1, menubar=1, resizable=1, scrollbars=1, status=1, toolbar=1,width=770, height=450');
		}
	else
		{
		alert('Sorry, this doesn\'t link to anything yet.');
		}
}
	
function winPopUp(thisURL)
{
	var lilWindow=window.open(thisURL, 'winPopUp', 'width=300, height=300, resizable=1, scrollbars=1')
}

function newWindow(thisURL)
	{
	window.open(thisURL,'answerbook','width=750, height=400, scrollbars=1, resizable=1,toolbar=1');
	}