﻿/***********************************************
*   To use in the window's onbeforeunload event 
*   to end the user's session.
*
***********************************************/
/*
function window_onbeforeunload()
{
    window.navigate('Disconnect.aspx');
}
*/
/********************************************************
*   
*   Open a Popup with the PDF
*
********************************************************/
function popupPDF(PDFName, PageName)
{ 
    window.open("PDF/" + PDFName, PageName,"width=500,height=500,resizable=yes")
}