function submitQuoteInfo() {
  var QuoteBean = {name:null, company:null, phone:null, fax:null, email:null, street_address:null, city:null, state:null, zipcode:null, country:null, projecttype:null, timeframe:null, distribution:null, os:null, tools:null, databases:null, txtmsg:null, byphone:null, byemail:null};
 DWRUtil.getValues(QuoteBean);
 SrestController.setQuoteInfo(QuoteBean, renderInform);
}
function renderInform(data) {
 document.getElementById("message").innerHTML=data;
}