﻿function SetBannerTDPageCatalog(bgimg, country, title, price, pid, prid, showhotel) {

    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.backgroundImage = 'url(http://www.anubistravel.hu/Kepek/Lapozos/' + bgimg + ')';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.cursor='pointer';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').onclick = function() { ForwardPage(pid) };
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_HyperLink1').href = 'Index.aspx?pid=' + pid;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label1').innerHTML = country;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = '';
    if (showhotel) { document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = title; }
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label3').innerHTML = price+' Ft/főtől';

}

function SetBannerTDProgramCatalog(bgimg, country, title, price, pid, prid, showhotel) {

    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.backgroundImage = 'url(http://www.anubistravel.hu/Kepek/Lapozos/' + bgimg + ')';
    
    //Aqaba+Holt-tenger nem kattint.
    if (bgimg != '14-jordania.jpg') {
        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.cursor = 'pointer';
        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').onclick = function() { ForwardPage(prid) };

        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label1').innerHTML = country;
        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_HyperLink1').href = 'Index.aspx?pid=' + prid;

    } else {
        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label1').innerHTML = 'Jordánia';
        document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_HyperLink1').href = 'Index.aspx?pid=664';

    }

    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = '';
    if (showhotel) { document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = title; }
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label3').innerHTML = price + ' Ft/főtől';

}

function SetBannerTDPageHotel(bgimg, country, title, price, pid, prid, showhotel) {

    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.backgroundImage = 'url(http://91.82.119.74/nuhu4services/imageworksex.aspx?filename=anubis/upload/images/' + pid + '_' + bgimg + '.jpg&width=400&height=270)';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.cursor = 'pointer';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').onclick = function() { ForwardPage(pid) };
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_HyperLink1').href = 'Index.aspx?pid=' + pid;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label1').innerHTML = country;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = '';
    if (showhotel) { document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = title; }
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label3').innerHTML = price + ' Ft/főtől';

}

function SetBannerTDProgramHotel(bgimg, country, title, price, pid, prid, showhotel) {

    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.backgroundImage = 'url(http://91.82.119.74/nuhu4services/imageworksex.aspx?filename=anubis/upload/images/' + pid + '_' + bgimg + '.jpg&width=400&height=270)';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').style.cursor = 'pointer';
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_ImageTD').onclick = function() { ForwardPage(prid) };
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_HyperLink1').href = 'Index.aspx?pid=' + prid;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label1').innerHTML = country;
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = '';
    if (showhotel) { document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label2').innerHTML = title; }
    document.getElementById('ctl00_ContentPlaceHolder1_FrontPagePanelMain1_Label3').innerHTML = price + ' Ft/főtől';

}


function ForwardPage(pid) {
    if (pid != 699) {
        window.location.href = 'Index.aspx?pid=' + pid;
    };
}