

function showLarge(anchor) {

    if (!anchor.getAttribute) return true;
    
    var url = anchor.getAttribute("HREF");
    var w = window.open(url, "large", "width=350,height=510,scrollbars=0,resizable=0");
    
    return false;

}