var newwindow;
function cvvDetailsPopup(url) {
    Popup(url, 'cvvDetails', 740, 365, 1, 1);
}
function termsPopup(url) {
    Popup(url, 'terms', 800, 600, 1, 1);
}
function iconLegend(url) {
    Popup(url, 'iconLegend', 440, 585, 1, 1);
}
function resortConditions(url) {
    Popup(url, 'resortConditions', 690, 585, 1, 1);
}
function popupA(url) {
    newwindow = window.open(url, 'name', 'height=820,width=620,scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
    if (window.focus) { newwindow.focus() }
}

function Popup(url, windowname, w, h, x, y) {
    newwindow = window.open(url, windowname, "resizable=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y + "");
    if (window.focus) { newwindow.focus() }
}

