﻿//#region Copyright Zerone Consulting Private Limited
//
// All rights are reserved. Reproduction or transmission in whole or in part, in
// any form or by any means, electronic, mechanical or otherwise, is prohibited
// without the prior written consent of the copyright owner.
//
// Filename        : UserListing.js
// Purpose         : UserListing.js
// Creation Date   : 23/June/2009
// Author          : Naveenkumar CN
//
// Change History  :
// Changed by      :                                     Date : 
// Purpose         :
//
//#endregion


// Purpose  : Navigate to download page
// Auther   : Naveenkumar CN
// Created  : 23/June/2009
function ShowDownloadPDFPopup(UniqueId) {
    //alert(UniqueId);

    var pdfFileName = "DownloadPDF.aspx?id=" + UniqueId;
    var pWidth = 200;
    var pHeight = 100;
    var pLeft = (screen.width / 2) - (pWidth / 2);
    var pTop = (screen.height / 2) - (pHeight / 2);
    window.open(pdfFileName, 'download', 'left=' + pLeft + ',top=' + pTop + ',width=' + pWidth + ',height=' + pHeight + ',resizable=no,status=yes,scrollbars=no,menubar=no').focus();
    
}

