
  function noframeHomepageLink(smallfont)
  {
    if (top.location == location)
    {
	var hotText="STP home page";
	var URL="http://www.stp.gb.com";
	var font="font-size:";
	var homeTarget="_parent";
	var homeTitle="STP\'s Home Page";
	var logoStyle="border:0; width:33px; height:27px;";
	var logoSource="/img/STP-logo.gif";
	var logoAlt="Solomon Trade Processing limited's 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: yellow; background: #000070; 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>');
    }
  }
