
function change_level(level) {
	if (level < 80) {
		hideDiv('div_80_info');
		hideDiv('more_info_level_80');
	}
	else {
		showDiv('div_80_info');
		showDiv('more_info_level_80');
	}
}

function change_app_type(type) {
	if (type == "" || type == "Social" || type == "Other") {
		hideDiv('div_raiding_info');
		hideDiv('div_raiding_info');
	}
	if (type == "Raiding") {
		showDiv('div_80_info');
		showDiv('div_raiding_info');
		showDiv('more_info_raiding');
	}
}

function isMozilla() {
	var var_browser = navigator.userAgent.indexOf("Firefox");
	if (var_browser < 0) {
		showDiv('IE_WARNING');
	}
}

function showDiv(x) {
	var obj
	if (! (obj = getObject(x)) ) return false
	obj.style.display = ''
	return true
}

function hideDiv(x) {
	var obj
	if (! (obj = getObject(x)) ) return false
	obj.style.display = 'none'
	return true
}
function toggleDiv( x ) {
	var obj;
	var imgobj;
	if (! (obj = getObject(x)) ) return false

	if (obj.style.display == 'none') { obj.style.display = '' }
	else { obj.style.display = 'none' }

}
function getObject(x) {
	obj = document.getElementById(x);
	if (!obj) return false
	return obj
}
function delete_cus_log(cus_id,log_id) {
	if(confirm('Delete Log Entry '+ log_id +'?')) window.location='/m/customer:sub_case=delete_cuslog&cus_id='+ cus_id +'&log_id='+ log_id;
}

