// JavaScript Document

function insertContact(u, s, t) {
	p = '&#109;&#97;&#105;&#108;to'
	document.write('<a href=\"' + p + ':' + u + '&#64;' + s + '\"  ');
	if (t != '') {
		document.write('title=\"' + t + '\" ');
	}
	document.write('target=\"_blank\">');
	document.write(u + '&#64;' + s + '</a>');
}

function clipboardCopy(text) {
	// copy given text to clipboard
}


function writeShowAndHide(id, showText, hideText) {
	document.writeln('<span id=\"show' + id + '\" style=\"display: inline\">' + 
		'<a href=\"index.htm\" class=\"button\" title=\"Expand\" onClick=\"expandSection(\'' + id + '\'); return false;\" language=\"JavaScript\">' + showText +
		'</a></span>' +
		'<span id=\"hide' + id + '\" style=\"display: none\">' + 
		'<a href=\"index.htm\" class=\"button\" title=\"Collapse\" onClick=\"collapseSection(\'' + id + '\'); return false;\" language=\"JavaScript\">' + hideText + 
		'</a></span>');
}
 
function expandSection(id) {
	document.getElementById('section'+id).style.display = "inline";
	document.getElementById('show'+id).style.display = "none";
	document.getElementById('hide'+id).style.display = "inline";
	return false;
}
	
function collapseSection(id) {
	document.getElementById('section'+id).style.display = "none";
	document.getElementById('show'+id).style.display = "inline";
	document.getElementById('hide'+id).style.display = "none";
	return false;
} 
