function checkDisplay() { 
	x = screen.width;
	y = screen.height;
	z = screen.pixelDepth;
	if (!z) {
		z = screen.colorDepth;
	}	
	if(x < 1024 || y < 768 || z < 16) {
		return false;
	}
	else {
		return true;
	}
}
		

var notifyelement;
function notify_text() {
	notifyelement = document.getElementById('notifycult3d');
	notifyelement.className = 'notifyboxhidden';
	notifyelement = document.getElementById('notifydisplay');
	notifyelement.className = 'notifyboxhidden';
	notifyelement = document.getElementById('notifyos');
	notifyelement.className = 'notifyboxhidden';
	if (!checkForCult3D()) {
		notifyelement = document.getElementById('notifycult3d');
		notifyelement.className = 'notifyboxvisible';
	}
	else if (!isMacintosh() && getCult3DVersion() < '5.3') {
		notifyelement = document.getElementById('notifycult3d');
		notifyelement.className = 'notifyboxvisible';
	}
	else if (!checkDisplay()) {
		notifyelement = document.getElementById('notifydisplay');
		notifyelement.className = 'notifyboxvisible';
	} 
	else {
		notifyelement = document.getElementById('notifyos');
		notifyelement.className = 'notifyboxvisible';
	}
}

