
  function noframeHomepageLink(smallfont)
  {
    if (top.location == location)
    {
	var hotText="Training Matters home page";
	var URL="http://www.trainingmatters.gb.com";
	var font="font-size:";
	var homeTarget="_parent";
	var homeTitle="Training Matters\' home page";
	var logoStyle="border:0;";	// width:33px; height:27px;";
	var logoSource="http://www.trainingmatters.gb.com/img/logo.gif";
	var logoAlt="Training Matters' logo &amp; link to the STP home page";

	if (smallfont)
		font += "0.83em"
	else
		font += "1.25em";

	document.write(	'<a href=\"' + URL + 
			'\" target=\"' + homeTarget + 
			'\" title=\"' + homeTitle + '\" >' );
	document.write(	'<p style=\"' + font + 
			'; font-variant: bold; color: red; background: #B0B0FF; text-align: center\">' );
	// document.write(	'<img style=\"' + logoStyle + 
	//		'\" align=left src=\"' + logoSource + 
	//		'\" alt=\"' + logoAlt + '\" />' );
	document.write(	'<img style=\"' + logoStyle + 
			'\" align=right src=\"' + logoSource + 
			'\" alt=\"' + logoAlt + 
			'\" />' );
	document.write(	'Go to the ' +
			hotText.link(URL) + 
			' for frames and more info'
			);
	document.write('</p></a>');
    }
  }
