function cleareMail()
{
    var box = document.getElementById( 'eMail' );
    
    if( box.value == 'e-mail' )
    {
        box.value = "";
    }
}

function reseteMail()
{
    var box = document.getElementById( 'eMail' );
    
    if( box.value == null || box.value == "" )
    {
        box.value = "e-mail";
    }    
}

function clearpass()
{
    var box = document.getElementById( 'pass' );
    
    if( box.value == 'hasło' )
    {
        box.value = "";
    }
}

function resetpass()
{
    var box = document.getElementById( 'pass' );
    
    if( box.value == null || box.value == "" )
    {
        box.value = "hasło";
    }    
}