
function onLoad() { }

function showMap(title)
{
	chainlinkgif = "chainlink.gif";
	crwgif = "crwbar.jpg";
	indexhtm = "index.htm";
	stylescss = "Styles.css";
	btn = document.forms[0].elements[0];
	chainlink = "<p align=\"center\"><img src=\"../images/";
	chainlink += chainlinkgif;
	chainlink += "\" width=354 height=16></p>";
	s = btn.name;
	var url = "<IMG SRC=\""; url += s; url += "\">";
	s ="<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\">";
	s +="<HTML>";
	s +="<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">";
	s +="<HEAD>";
	s +="<TITLE>"; s += title; s+= " Map - Charles River Wheelmen (CRW)</TITLE>";
	s +="<LINK rel=\"stylesheet\" type=\"text/css\" href=\"../";
	s += stylescss;
	s += "\">";
	s +="</HEAD>";
	s +="<BODY>";
	s +="<p><img src=\"../" + crwgif + "\"></p>";
	s +="<H1>Cue Sheet Repository</H1>";
	s +=chainlink;
	s +="<H1 class=\"u\">"; s += title; s+= " Map</H1>";
	s +=chainlink;
	s +="<p>&nbsp;</p>";
	s +="<DIV><CENTER>";
	s +=url;
	s +="</DIV></CENTER>";
	s +=chainlink;
	s +="<a href=\"javascript:history.go(-1)\">This Ride</a>, ";
	s +="<a href=\"../";
	s += indexhtm;
	s += "\">Home Page</a>, <a href=\"";
	s += indexhtm;
	s += "\">Cue Sheets</a>";
	s +="<H5 STYLE=\"font-size: 8pt; color: #CC6600;\">© 1997-";
	var date = new Date();
	s += date.getFullYear();
	s += " CRW, Inc. All rights reserved.</H5>";
	s +="Please report problems to <a href=\"mailto:jack@CRW.org\">WebMaster</a>.";
	s +="</BODY>";
	s +="</HTML>";
	//document.open("text/html");
	document.write(s);
	document.close();
}

// Launch a new window for the cuesheet
function launch(tag)
{
	//		var w = window.open(tag,"cttc","width=600,height=200,top=100,left=100,resizable=yes,scrollbars=yes");
	var w = window.open(tag,"cuesheet","resizable=yes,scrollbars=yes");
	w.focus();
}


