$(document).ready(function() {
    $(".uyelik_girisi input[type=text]").click(function() {
        $(this).addClass('temiz_input');
    })
    $(".uyelik_girisi input[type=password]").click(function() {
        $(this).addClass('temiz_input');
    })
})

function ackapa(id) {
    $('#s' + id).slideToggle('slow'); //toggle('slow');
}
function popup(u, w, h) {
    var p = window.open(u, 'popup', 'width=' + w + ',height=' + h + ',resizable=0,status=1');
    p.focus();
}
function forum_check() {
    var f = document.forms.forum;

    if (f.content.value == '') {
        alert('Lütfen mesajınızı yazınız.');
        f.content.focus();
        return;
    }

    f.submit();
}
//-
function popupInfoWindow(url) {
    screen_width = screen.width;
    screen_height = screen.height;
    widthm = (screen_width - 680) / 2;
    heightm = (screen_height - 340) / 2;
    window.open(url, "infowindow" + doRand(), "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=450,left=" + widthm + ",top=" + heightm);
}
function doRand() {
    var num;
    now = new Date();
    num = (now.getSeconds());
    num = num + 1;
    return num;
}
