<!--
function displayheadpic()
	{
	var pFile;
	var pAlt;
	var pWidth;
	var pHeight;
	var pLink='index.html';
	var sSelf=document.title.toUpperCase();
	var sIndexTitle = 'WELCOME TO SIMONESYSTEMS SOFTWARE';
	var sReachUsTitle = 'SIMONESYSTEMS SOFTWARE CONTACT';
	if (sSelf.search(sIndexTitle) >= 0 || sSelf.search(sReachUsTitle) >= 0)
		{
		pFile='Graphics\\sss3.gif';
		pAlt='SimoneSystems Software';
		pWidth=428;
		pHeight=61;
		}
	else
		{
		pFile='Graphics\\ucc3.gif';
		pAlt='Ultimate Collection Control';
		pWidth=441;
		pHeight=34;
		}
	if (sSelf.search(sIndexTitle) >= 0)
		{
			document.write('<img src="'+pFile+'" alt="'+pAlt+'" border="0" align="top" width="'+pWidth+'" height="'+pHeight+'">');
			document.write('<br>');
		}
	else
		{
			document.write('<a href="'+pLink+'"><img src="'+pFile+'" alt="'+pAlt+'" border="0" width="'+pWidth+'" height="'+pHeight+'" align="top"></a>');
			document.write('<br>');
		}
	}
displayheadpic();
//-->