/**
 * @author Mitch
 * 
 * based on http://www.javascriptkit.com/javatutors/objdetect3.shtml
 */

is_compatible = function() {
 	var check = true; 
	check = check && document.getElementById; // FF1+ IE5+ Opera7+ Safari and most modern browsers
	check = check && (!document.all || window.XMLHttpRequest) // IE 7+
	//check = check && (window.getComputedStyle || document.querySelector)  // mozilla based OR IE8
	//check = check && window.globalStorage; // only works on FF2+ (that's all we have tested so far)
	return check?true:false
 }

 is_new_site_enabled = function() {return true;}
