<!--
function addProfiledPersonToCompareCart(id) {
    if (id.length == 0)
        alert("Page error - ID not specified.");
    else {
        var url = 'child/addToCompareCart.asp?idtype=P&idlist=' + id;
        var winattribs = "toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, copyhistory=no, scrollbars=no"
        popup(url, 'addProfileToCart', 640, 480, winattribs)
    }
}

function addProfiledPersonToAlertsCart(id, label) {
    if (id.length == 0 || label.length == 0)
        alert("Page error - either ID and/or label not specified.");
    else {
        var url = 'child/addToAlertsCart.asp?pidlist=' + escape(id) + '&plabellist=' + escape(label);
        var winattribs = "toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, copyhistory=no, scrollbars=no"
        popup(url, 'v', 640, 480, winattribs)
    }
}

function companyNews() {
    if (companySortName.length == 0 || companyName.length == 0)
        alert("Cannot show Company News - company name not specified.");
    else {
        var url = 'child/companyNews.asp?csn=' + escape(companySortName) + '&cn=' + escape(companyName);
        var winattribs = "toolbar=no, location=no, directories=no, status=no, menubar=yes, resizable=yes, copyhistory=no, scrollbars=no"
        popup(url, 'companyNews', 800, 600, winattribs)
    }
}
//-->
