//	Script for the Annotated Adventure

var bgColor = '#99CCCC';

function blankPage() {
	return '<html><body bgcolor="' + bgColor + '"></body></html>\n';
}

function clearComment() {
	var myPage = blankPage();
	parent.comment.document.write(myPage);
	parent.comment.document.close();
}

function showComment(myComment) {
	var myPage = '<html><head>';
	myPage += '</head><body bgcolor="' + bgColor + '">\n';
	myPage += '<p style="font-family:verdana,arial,helvetica,univers,sans-serif;font-size:10pt;">' + myComment + '</p>';
	myPage += '\n</body></html>\n';
	parent.comment.document.write(myPage);
	parent.comment.document.close();
}

function newWindow(URL) {
	windowObj = window.open(URL,"myWindow","menubar,scrollbars,status,titlebar,resizable,height=500,width=700");
	windowObj.focus();
}
