function pp_affiliate_popup(affiliate_id)
{
    var width = 680;
    var height = 850;
    
    if (height > screen.height){ height = screen.height - 20; }
    
    var left = (screen.width - width)/2;
    var top = (screen.height - height)/2;
    var params = 'width='+width+', height='+height;
    params += ', top='+top+', left='+left;
    params += ', directories=no';
    params += ', location=no';
    params += ', menubar=no';
    params += ', resizable=yes';
    params += ', scrollbars=yes';
    params += ', status=no';
    params += ', toolbar=no';
    
    url = 'http://www.prepaid24.co.za/affiliate.php?aid='+affiliate_id;
    
    newwin=window.open(url,'windowname5', params);
    if (window.focus) {newwin.focus()}
    return false;
}

function pp_affiliate_popup_na(affiliate_id)
{
    var width = 680;
    var height = 850;
    
    if (height > screen.height){ height = screen.height - 20; }
    
    var left = (screen.width - width)/2;
    var top = (screen.height - height)/2;
    var params = 'width='+width+', height='+height;
    params += ', top='+top+', left='+left;
    params += ', directories=no';
    params += ', location=no';
    params += ', menubar=no';
    params += ', resizable=yes';
    params += ', scrollbars=yes';
    params += ', status=no';
    params += ', toolbar=no';
    
    url = 'http://www.prepaid24.com.na/affiliate.php?aid='+affiliate_id;
    
    newwin=window.open(url,'windowname6', params);
    if (window.focus) {newwin.focus()}
    return false;
}

