﻿function changepicture(id, url) {
    var pre = "mainDiv";
    document.getElementById("News-Holder-Main").style.backgroundImage = "url(" + url + ")";
    headline = document.getElementById("Headline" + id).innerHTML;
    blurb = document.getElementById("Blurb" + id).innerHTML;
    if (blurb.length > 70) {
        blurb = blurb.substring(0, 140) + "...";
    }
    document.getElementById("Headline").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"hyperlinks\">" + headline + "</a>";
    document.getElementById("Blurb").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"normalText\">" + blurb + "</a>";
}

function moreChangePicture(id, url) {
    document.getElementById("News-Holder-Main-More").style.backgroundImage = "url(" + url + ")";
    headline = document.getElementById("MoreHeadline" + id).innerHTML;
    blurb = document.getElementById("MoreBlurb" + id).innerHTML;
    if (blurb.length > 70) {
        blurb = blurb.substring(0, 140) + "...";
    }
    document.getElementById("MoreHeadline").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"hyperlinks\">" + headline + "</a>";
    document.getElementById("MoreBlurb").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"normalText\">" + blurb + "</a>";
}

function changeNewsStory(id, url) {
    var pre = "mainDiv";
    document.getElementById("News-Holder-Main").style.backgroundImage = "url(" + url + ")";
    headline = document.getElementById("Headline" + id).innerHTML;
    blurb = document.getElementById("Blurb" + id).innerHTML;
    if (blurb.length > 160) {
        blurb = blurb.substring(0, 160) + "...";
    }
    document.getElementById("Headlines-Holder").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"hyperlinks\">" + headline + "</a>";
    document.getElementById("Blurb-Holder").innerHTML = "<a href=\"newsItem.html?Id=" + id + "\"" + "class=\"normalText\">" + blurb + "</a>";
}
function changeMatchDiv(element) {

    var t = element;
}

function showPicture(url) {
    var test = url;
    window.open("ShowBigPicture.html?url=" + url, "", "width=660, height=500", "");
}

function showVideo(url) {
    var test = url;    
    location.href = url;
}
var videoId = "";

function videoPopup() {
    showVideo('http://www.sundowns.co.za/video.html?id=' + videoId);
}

function changeVideoStory(url, videoUrl, description) {
    var desc = description.toString().split(',');
    //document.getElementById("mainVideoImageDiv").style.backgroundImage = "url(" + url + ")";
    document.getElementById("description-top-Holder").innerText = desc[0];
    document.getElementById("description-bottom-Holder").innerText = desc[1];    
    videoId = videoUrl;
    document.getElementById("mainVideoImage").onclick = videoPopup;
}

function changePlayerVideoStory(url, videoUrl, description) {
    var desc = description.toString().split(',');
    document.getElementById("mainVideoImageDiv").style.backgroundImage = "url(" + url + ")";
    videoId = videoUrl;
    document.getElementById("mainVideoImageDiv").onclick = videoPopup;
}

function changeVideoStoryOnLoad(url, videoUrl) {
    //document.getElementById("mainVideoImageDiv").style.backgroundImage = "url(" + url + ")";
    videoId = videoUrl;
    document.getElementById("mainVideoImage").onclick = videoPopup;
}

function closeWindow() {
    window.close();
}
