﻿function SetFoodClass(sayfaid, img, comment, description) {
    var myid = sayfaid;
    var myimage = img;
    var mycomment = comment;
    var mydescription = description;

    document.getElementById('imgFood').src = myimage;
    document.getElementById('divFoodComment').innerHTML = mycomment;

    if (myid == 1) {
        document.getElementById('divFoodDescription').innerHTML = mydescription;
    }
}

var GotoFootballPage = function (id) {
    var myid = id;
    window.location = 'Futbol.aspx?id=' + myid;
}

var GotoSciencePage = function (id) {

    var myid = id;
    window.location = 'Bilim.aspx?id=' + myid;
}

var GotoReadPage = function (id) {

    var myid = id;
    window.location = 'Okuyun.aspx?id=' + myid;
}

var GotoSuccessPage = function (id) {

    var myid = id;
    window.location = 'Basari.aspx?id=' + myid;
}

var GotoQuestionPage = function (id) {

    var myid = id;
    window.location = 'Soru-Cevap.aspx?id=' + myid;
}

var GotoGalleryPage = function (id) {

    var myid = id;
    window.location = 'Galeri.aspx?id=' + myid;
}

var GotoSeoGalleryPage = function (seoid) {

    var myseoid = seoid;
    window.location = 'Galeri.aspx?seodvGallery=page' + myseoid;
}

var GotoVideoPage = function (id) {

    var videoid = id;
    window.location = 'Video.aspx?id=' + videoid;
}

var SetElementOpacity = function (e, level) {
    e.style.opacity = level;
    e.style.MozOpacity = level;
    e.style.KhtmlOpacity = level;
    e.style.filter = "alpha(opacity=" + (level * 100) + ");";
}

var PostActionMessage = function (x) {
    var MyElement = document.getElementById('divError');
    if (MyElement) {
        MyElement.innerHTML = x;
        MyElement.style.display = 'block';
        MyElement.style.height = '21px';
        SetElementOpacity(MyElement, 1);
    }
}

var DivImgSize = function () {

    var x = document.getElementById('divVideoRandom');
    x.childNodes[0].style.width = '205px';
    x.childNodes[0].style.height = '105px';
}
