function EmailPage() {
    LeftPosition = (screen.width) ? (screen.width-450)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-250)/2 : 0;
    OpenWin = 
    this.open("/emailpage.php?page="+location.href,"EmailWindow","toolbar=no,width=450,height=250,left="+LeftPosition+",top="+TopPosition+",directories=no,status=no,scrollbars=no,resize=no,menubar=no")
}

function PrintPage() {
    LeftPosition = (screen.width) ? (screen.width-600)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-600)/2 : 0;
    OpenWin = 
    this.open(location.href+"?print=1","EmailWindow","toolbar=no,width=600,height=600,left="+LeftPosition+",top="+TopPosition+",directories=no,status=no,scrollbars=yes,resize=no,menubar=no")
}

