// links_menu.js
// JavaScript programming by Paul Nahay, DrMidi@swansos.com, pnahay@sprynet.com
// When this file changes, paste contents into top.js where indicated.

function out(str){
	document.write(str);
}

if("undefined"==typeof dir)
	var dir="";

function item(link,text){
	var hasLink=arguments.length>1;
	if(!hasLink)
		text=link;
	out('<TR>');
	out('<TD vAlign=top><IMG height=10 alt="" src="'+dir+'bullet.gif"');
	out('width=5 border=0>&nbsp;</TD>');// space between bullet and link text
	if(hasLink)
		out('<TD><A href="'+dir+link+'">'+text+'</A></TD>');
	else
		out('<TD>'+text+'</TD>');		
	out('</TR>');
}

out(''
+'<TABLE cellSpacing=0 cellPadding=0 width=150 border=0 valign="top">'
+'<TBODY>');

item("about.html","Об ИнтерНИШ");
item("news.html","Новости");
item("alt.html","Альтернативы");// Alternatives

if(typeof afterAlternatives!="undefined")
	out(afterAlternatives);

item("conshi.html","Сознательный протест");// Conscientious Objection
item("resource.html","Наши ресурсы");// Resources

if(typeof afterResources!="undefined")
	out(afterResources);

item("help.html","Как вы можете помочь");
item("sponsor.html","Спонсоры");
item("sitemap.html","Карта сайта");
item("links.html","Ссылки");
item("index1.html","ДОМАШНЯЯ СТРАНИЦА");
out('</TBODY></TABLE>');

out('<br><font face="Verdana"><b>Языки других версий вебсайта:</b></font><br><br>');
out('<TABLE cellSpacing=0 cellPadding=0 width=150 border=0 valign="top"><TBODY>');
item("http://www.interniche.org","английский");
item("http://www.interniche.org/ar","арабский");
item("http://www.interniche.org/gr","греческий");
item("http://www.interniche.org/fa","персидский");
item("http://www.interniche.org/pl","польский");
item("http://www.internichebrasil.org","португальский (Бразилия)");
item("http://www.interniche.org/ro","румынский");
item("http://www.interniche.org/ua","украинский");
item("http://www.interniche.org/cz","чешский");
out('</TBODY></TABLE>');

out('<br><font face="Verdana"><b>Языки версий в процессе разработки:</b></font><br><br>');
out('<TABLE cellSpacing=0 cellPadding=0 width=150 border=0 valign="top"><TBODY>');
item("нидерландский");
item("немецкий");
item("корейский");
item("словацкий");
item("урду");
out('</TBODY></TABLE>');


if(typeof afterLinks!="undefined")
	out("<p>"+afterLinks+"</p>");

// Nick Jukes contact:

out('<p><DIV class=p1><B>InterNICHE<br>Co-ordinator:</B>'
+'<BR>Nick Jukes'
+'<br/>42 South Knighton Road'
+'<br/>Leicester LE2 3LP'
+'<BR>England'
+'<p>Tel/Fax&nbsp+44'+'&nbsp;'+'116'+'&nbsp;'+'2109652</p>'
+'<p><A href="mailto:coordinator@interniche.org?subject=InterNICHE">coordinator@interniche.org&nbsp;&nbsp;</A></p>'
+'</DIV></p>');

