var contactme = new Array('Joe Sweeney', 'joe', 'astutedata.com');
var writeraka = new Array('Contact Us', 'author', 'astutedata.com');

function swapOver(newPage) {
    if (thisPage != newPage) {
        document.getElementById(newPage).style.color = '#9CFCFC';
    }
}

function swapOff(newPage) {
    if (thisPage != newPage) {
        document.getElementById(newPage).style.color = '#000000';
    }
}

function popUpWindow(URLStr, left, top, width, height) {
    window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,width='+width+',height='+height+',left='+left+', top='+top);
}


