// Title:			JS for www.lebanonartandcrafts.org
// Date started: 	November 30, 2008
// Filename:		script.js	
// Purpose:			This is a collection of functions related to the Web site


// E-mail

function show_email(showtext, mailpart1, mailpart2) {

	var em = "<a title='" + showtext + "' href='mailto:" + mailpart1 + "@" + mailpart2 + "'>" + showtext + "</a>";

	return em;

};


