/*
common.js
*/

function onSubmit(url) {
    window.document.getElementById('form1').action = url;
    window.document.getElementById('form1').target = '_self';
    window.document.getElementById('form1').method = 'POST';
    window.document.getElementById('form1').submit();
}



