/**
 * Getters and Setters
 */
function getIsIE() {
	return isIE;
}
function setIsIE() {
	try { document.attachEvent(); return true; } 
	catch(e) { return false; }
}