// JavaScript Document

function fWriteCopyrightNav(path){
//***** writes the CopyRight of the page
		var str =	"";
		str = str	+	"<table border=0  cellpadding=0 cellspacing=0 valign=top align=center id='copyright' style='font-family: Verdana; font-size: 8pt; color: #000055'>";
		str = str	+	"<tr><td>";
		str = str	+	"Development by [ <a href='http://www1.eguermin.org/' title='Development by [EGUERMIN]' style='font-family: Verdana; font-size: 8pt; color: #000055' target='_blank' class='pathsmall'>EGUERMIN</a> ]";																																;
		str = str	+	" - ";
		str = str	+	"&copy; <a href='../copy.asp'  title='copyright' style='font-family: Verdana; font-size: 8pt; color: #000055' target='_self' class='pathsmall'>EGUERMIN</a>";																													;
		str = str	+	" - ";
		str = str	+	"<a href='mailto:webmaster@eguermin.org' title='mail us for info about the school' style='font-family: Verdana; font-size: 8pt; color: #000055' class='pathsmall'>webmaster@eguermin.org</a>";


		str = str	+	"</td></tr>";
		str = str	+	"</table>";
		return str	
}