function submitInform(mode) {
 document.getElementById("mode").value=mode;
 var InformBean = {name:null, email:null, phone:null, company:null, password:null, mode:null};
 DWRUtil.getValues(InformBean);
 SrestController.saveInform(InformBean, renderInform);
}
function renderInform(data) {
 document.getElementById("message").innerHTML=data;
}
