var _httpobj2 = null;

function requestDb2( data , method , url , async, func )
{
  _httpobj2 = createHttpRequest();

  _httpobj2.open( method , url , async );
  _httpobj2.onreadystatechange = func;

  _httpobj2.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
  _httpobj2.send( data );
}

