
	//	ZOMG COMMON FUNCTIONS!

	function DESemail(emailname, emailserver) {
		document.write('<a href="mailto:' + emailname + '@' + emailserver +'">' + emailname + '@' + emailserver + '</a>'); 
	}

	function DESgoto(target) {
		if (target != '') this.location.href = target;
	}

	function css_on() {
		//	FOR THIS TO WORK make sure the following CSS is being referenced somewhere:
		//	.css_test { display: none; height: 1px; width: 1px; }

		$('<div class="css_test"></div>').appendTo('body');
		result = $('.css_test').width() > 0;
		$('.css_test').remove();
		return result;
	}

	function print_mode() {
		//	FOR THIS TO WORK make sure the following CSS is being referenced somewhere:
		//	.print_test { display: none; height: 1px; width: 1px; }

		$('<div class="print_test"></div>').appendTo('body');
		result = $('.print_test').width() == 1;
		$('.print_test').remove();
		return result;
	}

