﻿function obj(x) { return document.getElementById(x) };
function $(x) { return document.getElementById(x) };


function showDO() {
    $("DenizOtobusu").style.display = 'block';
    $("Feribot").style.display = 'none';  
}

function showF() {
    $("Feribot").style.display = 'block';
    $("DenizOtobusu").style.display = 'none'; 
}
