
var user;
var domain;
var suffix;
function jemail(user, domain, suffix){
document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}


<!-- Begin
function yearstamp() {
Stamp = new Date()
year = Stamp.getYear();
document.write(year);
}


function prevNav() {
var dir = location.href.substring(0,location.href.lastIndexOf('/')+1);
var StrPage = location.href.substring(dir.length,location.href.length+1);
arr_StrPage = StrPage.split(".");
StrPage = arr_StrPage[0];

if (StrPage == "default"){
	document.write('<a id="previous">Previous</a>');
	}
else if (parseInt(StrPage) > 1){
	document.write('<a id="previous" href="' + (parseInt(StrPage)-1) + '.htm"  id="previous">Previous</a>');
	}
else {	
	document.write('<a href="default.htm" id="previous">Previous</a>');

}
}


function nextNav() {
var pageNumber;
var dir2 = location.href.substring(0,location.href.lastIndexOf('/')+1);
var StrPage2 = location.href.substring(dir2.length,location.href.length+1);
arr_StrPage2 = StrPage2.split(".");
StrPage2 = arr_StrPage2[0];
if(StrPage2 == "default"){
pageNumber = 1
}
else {
pageNumber = parseInt(StrPage2) +1
}
document.write('<a href="' + pageNumber + '.htm" id="next" >Next</a>');
pageNumber = 1
}


var links = location.href;
var tail =  '<a href="';
var split_Links = new Array();
split_Links = links.split("//");
links = split_Links[1];
var split_Nav = new Array();
split_Nav = links.split("/");
links = '<a href = "default.htm">Home</a>';

function writeNav() 
{
	if (split_Nav.length > 2)
	{
		links = tail
		for (j = 0; j < (split_Nav.length - 1); j++)
		{
			links = links + '../'
		}
		links = links + 'index.html">Home</a>&nbsp;&gt;&nbsp';
		
	}
	
	for (i = 1; i < (split_Nav.length - 1); i++)
		{	
			for (k = 0; k < (split_Nav.length - (i+2)); k++)
			{
				tail = tail + '../';
			}
				tail = tail + 'default.htm">' + split_Nav[i] + '</a>&nbsp;&gt;&nbsp<a href="';			
		}

			
	links = links + tail + '"></a>' + document.title; 

		
	document.write(links);
}


function OpenBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}





