/* 
*   Przypisuje wartość do pola tripStartflightTo taką samą jak jest w tripStartflight,
*   w przypadku gdy w polu ilość dni + zostanie wybrana wartość 0
*/
function changeRangeToDate(obj)
{
    if (obj.value=="0")
    {
        document.getElementById('tripStartflightTo').value = document.getElementById('tripStartflight').value;                        
    }
    else if (document.getElementById('tripStartflightTo').value!="")
    {
        document.getElementById('tripStartflightTo').value="";
    }
}

function switchOpinieForm(obj) {
    if (obj.id == "opinieResult") {
        obj.className = obj.className.replace('show','hidden');
        document.getElementById("opinieForm").className = obj.className.replace('hidden','show');
    }
    else if (obj.id == "opinieForm") {
        obj.className = obj.className.replace('show','hidden');
        document.getElementById("opinieResult").className = obj.className.replace('hidden','show');
    }
}
