// form functions

function treatProform()
{
    if(document.getElementById('inp002')!=null) { document.getElementById('inp002').value = '2012'; }
    var proform = document.getElementsByTagName('p');
    for(var i=0; i<proform.length; i++) {
        if(proform[i].className=='proform') {
            proform[i].style.position = 'absolute';
            proform[i].style.left = '-4000px';
        }
    }
}


// onload initialisation

window.onload = function()
{
    treatProform();
}

// dfjdkj-EOF
