
	Des = {}

	Des.css_on = function() {
		//	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')
		css_on = $('.css_test').width() > 0;
		$('.css_test').remove()
		return css_on;
	}


	Des.is_IE6 =function() {
		return $.browser.msie && parseInt($.browser.version) == 6;
	}

	function DESemail(emailname, emailserver) {
		document.write('<a href="mailto:' + emailname + '@' + emailserver +'">' + emailname + '@' + emailserver + '</a>'); 
	}

	Des.print_mode = function() {
		//	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')
		print_mode = $('.print_test').width() > 0;
		$('.print_test').remove()
		return print_mode;
	}
