// Writes email link
function writeEmailLink(UserName, DomainName){
	document.write('<a href="mailto:');
	document.write(UserName + '@' + DomainName);
	document.write('">');
	document.write(UserName + '@' + DomainName);
	document.write('</a>');
}

// Inserts columns into link data 
// 
// 									*** This controls the number of lines in each column *** 
// 
function LinkData(LinkURL, BlankSelf, descrip, LinkText, LinkTags){
	if (RowCount>42){
		document.write('</td><td class="favouriteURLs">');
		RowCount=1;
	};
	writeLink(LinkURL, BlankSelf, descrip, LinkText, LinkTags);
	LinkCount=LinkCount+1;
	RowCount=RowCount+1;
}

// Writes link 
function writeLink(LinkURL, BlankSelf, descrip, LinkText, LinkTags){
	document.write('<a href="');
	document.write(LinkURL);
	document.write('" target="');
	document.write(BlankSelf);
	document.write('" title="');
	document.write(descrip);
	document.write('">');
	if (LinkTags=="Computer"){	document.write("<span class='Computer'>")};
	if (LinkTags=="Data"){		document.write("<span class='Data'>")};
	if (LinkTags=="Entertainment"){	document.write("<span class='Entertainment'>")};
	if (LinkTags=="Games"){		document.write("<span class='Games'>")};
	if (LinkTags=="Internet"){	document.write("<span class='Internet'>")};
	if (LinkTags=="Local"){		document.write("<span class='Local'>")};
	if (LinkTags=="News"){		document.write("<span class='News'>")};
	if (LinkTags=="Other"){		document.write("<span class='Other'>")};
	if (LinkTags=="Quick"){		document.write("<span class='Quick'>")};
	if (LinkTags=="Shop"){		document.write("<span class='Shop'>")};
	if (LinkTags=="Sport"){		document.write("<span class='Sport'>")};
	if (LinkTags=="Travel"){	document.write("<span class='Travel'>")};

	document.write(LinkText);
	document.write("</span>");
	document.write('</a><br>');
}

// Writes link with description
function writeLongLink(LinkURL, BlankSelf, descrip, LinkText){
	document.write('<a href="');
	document.write(LinkURL);
	document.write('" target="');
	document.write(BlankSelf);
	document.write('" title="');
	document.write(descrip);
	document.write('">' + LinkText + '</a> - ' + descrip + '<br>');
}


