
function nullLink(theTitle, theMessage) {
	if (theTitle.length == 0) {
		theTitle = "Welcome to Nowhere"
	}
	var messagePart1 = "You got here by clicking on a dummy link in a prototype or example. "
	messagePart1 += "No harm in that. And you must admit this page is friendlier than the page-not-found message in your browser. "
	var goBackLink = "<a href='javascript:history.back()'>Back where I came from</a>"
	var messagePart2 = "To get back where you came from, click " + goBackLink + ". "
	var messagePart3 = "Au revoir. Adios. Farewell. Sayonara. Auf Wiedersehen."
	
	var myHTML = ""
	myHTML += "<html><head><title>Nowhere Page</title>"
	myHTML += "<LINK REL='stylesheet' HREF='tests/styles/WBTExamples.css'></head>"
	myHTML += "<BODY BGCOLOR='#FFFFFF' LINK='#000000' VLINK='#000000' ALINK='#FF0000'>"
	myHTML += "<DIV ALIGN='CENTER'>"
	myHTML += "<TABLE WIDTH='565' BORDER='0' CELLSPACING='0' CELLPADDING='0'><TR><TD>"
	myHTML += "<h1>" + theTitle + "</h2>"
	myHTML += "<hr>"
	myHTML += "<p>" + messagePart1 + "</p>"
	if (theMessage.length > 0) {
		myHTML += "<p><b>" + theMessage + "</b></p>"
	}
	myHTML += "<p>" + messagePart2 + "</p>"
	myHTML += "<hr>"
	myHTML += "<p>" + messagePart3 + "</p>"
	myHTML += "</TD></TR></TABLE></DIV>"
	myHTML += "</body></html>"
	
	document.open()
	document.write(myHTML)
	document.close()
}