function createEmail(id, ct) {
	var cot = new Array();
	var at = '@';
	var st = '<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
	cot['bookme'] = 'group_bookings' + at + 'silverlakecottages.com';
	cot[1] = 'silverlakecottage' + at + 'cbr.ca';
	cot[2] = 'ssponzo' + at + 'gmail.com';
	cot[3] = 'hvandervelde' + at + 'sympatico.ca';
	cot[4] = 'dschanzenbacher' + at + 'rogers.com';
	cot[5] = 'janehay' + at + 'rogers.com';
	cot[6] = 'dmolnar' + at + 'sympatico.ca';
	cot[7] = 'silverlakec7' + at + 'yahoo.ca';
	cot[8] = 'kdc8' + at + 'live.ca';
	cot[9] = 'tomrowen' + at + 'sympatico.ca';
	cot[10] = 'startekr' + at + 'spclaw.ca';
	if (! id) {
		return false;
	} else {
		if (! ct) {
			ct = '?subject=Silver Lake Cottage ' + id;
			document.write(st + '<a href="mailto:' + cot[id] + ct + '">' + cot[id] + '</a>');
		} else {
			document.write('<a href="mailto:' + cot[id] + '">' + cot[id] + '</a>');
		}
		return true;
	}
}
function doSomethingWithClasses(theClass, ct) {
	if (! ct) {
		return false;
	} else {
		ct = theClass + '@' + 'silverlakecottages.com';
		var allPageTags = new Array(); 
		//Populate the array with all the page tags
		var allPageTags=document.getElementsByTagName("a");
		//Cycle through the tags using a for loop
		for (var i=0; i<allPageTags.length; i++) {
			//Pick out the tags with our class name
			if (allPageTags[i].className==theClass) {
				//Manipulate this in whatever way you want
				allPageTags[i].href = 'mailto:' + ct;
				allPageTags[i].childNodes[0].nodeValue = ct;
			}
		}
		return true;
	}
} 
