﻿// 36 = Mijn Oosterik NL
// 39 = Nieuw account NL
// 46 = Winkelwagen NL

// 157 =  Mijn oosterik DE
// 158 =  Nieuwe account DE
// 120 = Winkelwagen DE


function checkpage(pageid) {
    var CurrentUrl = new String(window.location);
    if ((pageid == '36') || (pageid == '39') || (pageid == '46') || (pageid == '157') || (pageid == '158') || (pageid == '120')) {
        if (window.location.protocol == 'http:') {
            var httpsURL = new String(CurrentUrl.replace('http:', 'https:'))
           window.location = httpsURL;
        }
    } else {
        if (window.location.protocol == 'https:') {
            var httpURL = new String(CurrentUrl.replace('https:', 'http:'))
            window.location = httpURL;
        }
    }
}
