// JavaScript Document
 function compute(obj) {       var phone = eval( 4 * obj.users.value);     var handling = eval( ( ( ( obj.calls.value * obj.mins.value) * 75.9) / 60) * 41) + phone + ( (108 * obj.users.value) * (obj.mins.value / 15) );     var downtime = eval( (obj.mins.value*.33) / 60) * 40;     var onsite = eval( (obj.calls.value * 230) * ( ( (90-obj.closed.value) / 4) / 100) ) * obj.visit.value;     result = new String (onsite + downtime + handling);     if ( result.indexOf('.') != -1) {  		display = "$" + result.substring( 0, result.indexOf('.') + 3 );  		}else{  		display = "$" + result;  	}     obj.savings.value = display;     if ( result > 40000 ) {  	var newurl = "/software/products/tb2/enterprise/costcalc2.html?" + result;  	if (! ( ( navigator.appName == "Netscape" ) && ( navigator.appVersion.charAt(0) == 2 ) ) ) {  		var newone = open(newurl,'costcalc_results',"scrollbars,resizable,width=475,height=275");  	}  	}  } function popup() {    newwin=window.open('/en-us/support/contact_us.html','newwin','height=300,width=575,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no');      }