var newwindow;
function cvvDetailsPopup(url) {
    Popup(url, 'cvvDetails', 740, 365, 1, 1);
}
function termsPopup(url) {
    Popup(url, 'terms', 800, 600, 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 ImageRotatorPopup(url) {
    if ((url != null) && (url.length > 0) && (url.toLowerCase().indexOf('http') === 0)) {
        window.open(url, "_blank", "");
    } else {
        location.href = url;
    }
}

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() }
}

