<!--



	// JavaScript to print out email address and prevent email harvesters
	// Domain = domain name (i.e. sarantel.com)
	// User = the username (i.e. jon@)
	// Display = 0 or 1 (displays either "jon@sarantel.com" or "send email" respectively)

	function printEmail(user,domain,display) {

		// If no domain was entered use default
		if (!domain) {
			domain = 'sarantel.com';
		}

		document.write('<a href="mailto:');

		document.write(user);
		document.write('@');
		document.write(domain);

		document.write('">');

		if (display == 1) {
			document.write('Send email');
		}
		else {

			document.write(user);
			document.write('@');
			document.write(domain);
		}

		document.write('</a>');

	}


	// Function to open map window.

	function map() {
		if (document.all || document.getElementById) {
			var xMax = screen.width;
			var yMax = screen.height;
		}
		else if (document.layers) {
			var xMax = window.outerWidth; 
		    	var yMax = window.outerHeight;
		}
		else {
			var xMax = 800;
			var yMax=600;
		}

		var xOffset = (xMax - 660)/2, yOffset = (yMax - 460)/2;
		window.open('/images/map.gif','map',config='width=660,height=460,resizable=no,scrollbars=no,toolbar=no,status=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');

	}



//-->