function validatebeforesubmit(data){
var time = 3000; /* 3 saniye */
setTimeout(function(){
data.submit();
},time);
return false;
}





BPMwVB