function incrementView(id) {
	var xmlHttp;
	xmlHttp = false;
    // branch for native XMLHttpRequest object
    if(window.XMLHttpRequest && !(window.ActiveXObject)) {
    	try {
			xmlHttp = new XMLHttpRequest();
        } catch(e) {
			xmlHttp = false;
        }
    // branch for IE/Windows ActiveX version
    } else if(window.ActiveXObject) {
       	try {
        	xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
      	} catch(e) {
        	try {
          		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        	} catch(e) {
          		xmlHttp = false;
        	}
		}
    }

	
	xmlHttp.onreadystatechange=function() {
		if(xmlHttp.readyState==4) {
			
		}
	}
	xmlHttp.open("GET", "/rufbox/incrementview/messageID/"+id, false);
	xmlHttp.send(null);
}
