function openArticle(page) {
    var winl = (screen.width - 550) / 2;
    var wint = (screen.height - 300) / 2;

    mDetail = window.open(page,null,'width=550,height=300,top='+wint+',left='+winl+',toolbar=No,location=No,directories=No,status=No,menubar=No,scrollbars=yes,resizable=No,minimize=no,maximize=no');
    return false;
}

function openImage(page,width,height) {
    var winl = (screen.width - width) / 2;
    var wint = (screen.height - height) / 2;
    mDetail = window.open(page,null,'width='+width+',height='+height+',top='+wint+',left='+winl+',toolbar=No,location=No,directories=No,status=No,menubar=No,scrollbars=no,resizable=No,minimize=no,maximize=no');
    return false;
}

function openPage(page,width,height,scroll) {
    var winl = (screen.width - width) / 2;
    var wint = (screen.height - height) / 2;
    mDetail = window.open(page,null,'width='+width+',height='+height+',top='+wint+',left='+winl+',toolbar=No,location=no,directories=No,status=no,menubar=No,scrollbars='+scroll+',resizable=No,minimize=no,maximize=no');
    return false;
}

function openConferencePhotos() {
    var winl = (screen.width - 800) / 2;
    var wint = (screen.height - 600) / 2;
    mDetail = window.open('/photos/2002conference/index.htm',null,'width=800,height=600,top='+wint+',left='+winl+',toolbar=No,location=no,directories=No,status=no,menubar=No,scrollbars=yes,resizable=No,minimize=no,maximize=no');
    return false;
}
