// VARIABLE FOR INSCRIPTION

//		Index:	0 - first text
//				1 - link text
//				2 - first string in email
//				3 - second string in email
//				4 - last string in email
//				5 - text for status string
var m_pszInscription = new Array("Website design:&nbsp;", "Alexander A. Sedletski", 
								 "Alexander", "Sedletski", "nateko.lu.se", " Send e-mail to Alexander A. Sedletski");


function writeInscription()
{
	document.writeln('<tr>');
	document.writeln('<td width="100%" align="center" valign="top">');
	document.writeln('<img border="0" src="images/10x10.gif" width="10" height="10"></td>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('<td width="100%" align="center" valign="top">');
	document.writeln('<font class="TextInscription">Copyright · NECC · &copy · 2004</font></td>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('<td width="100%" align="center" valign="top">');
	document.writeln('<img border="0" src="images/1x1.gif" width="1" height="1"></td>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('<td width="100%" align="center" valign="top">');
	var szSecond = '';
	if (m_pszInscription[3].length > 0)
		szSecond = '.' + m_pszInscription[3];
	document.writeln('<font class="TextInscription">' + m_pszInscription[0] + '</font><a href="mailto:' + m_pszInscription[2] + szSecond + '@' + m_pszInscription[4] + '" class="inscription"'); 
	document.writeln(' onMouseOver="setWindowStatus(\'' + m_pszInscription[5] + '\'); return true;"');
	document.writeln(' onMouseOut="setWindowStatus(\'\');">' + m_pszInscription[1] + '</a></td>');
	document.writeln('<tr>');
}