// *** Any style tags count as 1, no matter how many "@import url" statements it contains //
// This is to disable the Style Sheet that targets MSIE when Active Scripting is disabled //


// test if object is valid
function object_exist(object_) {
	if (null == object_ || "undefined" == typeof(object_)) {
		return false;
	}
	return true;
}

// if (object_exist(document.styleSheets)) {
// 	if(document.styleSheets) document.styleSheets[1].disabled=true;
// }

