	function showEmail(name,domain) {
		sep = '@';
		document.write(name+sep+domain);
	}

	function showMailTo(name,domain,clName,lnName) {
		className = '';
		linkName = (lnName>"")?(lnName):(name+"@"+domain);
		if (clName>"") {
			className = 'class="'+clName+'" ';
		}
		document.write('<a '+className);
		document.write('href="');
		document.write('mail');
		document.write('to:');
		showEmail(name, domain);
		document.write('">');
		document.write(linkName);
		document.write('</a>');
	}

	function openWin(url, name, features){
		var newWin = window.open( url, name, features )
	}	

	function imagePopup (url, width, height) {
		var features = 'width='+width+', height='+height+', menubar';
		var newWin = window.open(url, null, features);
	}
	
