function GetDataView( view ) {
    
    var path = "data/views/GetDataView.ashx?view=";
    path += view;
    
    var request = window.XMLHttpRequest ?
      new XMLHttpRequest() :
      new ActiveXObject("MSXML2.XMLHTTP.3.0");
      
    request.open("POST", path, false);
    request.setRequestHeader("Content-Type",
                           "application/x-www-form-urlencoded"); 

    var html = null;
    request.send(null);
    html = request.responseText;
    if ( html !== null ) {
        return html;
    }
    else {
        return "There were no items found.";
    }
}
