﻿//#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        : cmeProgramDetails.js
// Purpose         : cmeProgramDetails
// Creation Date   : 27/August/2009
// Author          : Abdul Gafoor
//
// Change History  :
// Changed by      :                                     Date : 
// Purpose         :
//
//#endregion


    //Function to Execute Luanch Activity
    function LuanchActivity(prgid, downloadType,fileViewType,fileName)
    {   
        downloadType = downloadType.toLowerCase();
        switch (downloadType)
        {
            case "pdf":
                location.href = "PdfPlayerPage.aspx?id=" + prgid;
                break;
            case "html":
                { 
                    if (fileViewType == "Open in new browser window")
                    {
                        window.open(fileName);
                    }                   
                    else if (fileViewType == "Use current browser window")
                    {
                       location.href = fileName;                       
                    }
                    else if (fileViewType == "Show with HeathMattersCME Header")
                    {
                       location.href ="Cme.aspx?id=" + prgid;
                    }
                    break;
                }
        }
      
    }
    
    
//    if (fileViewType == "Open in new browser window")
//                    {
//                        ClientScript.RegisterStartupScript(this.GetType(), "newWindow", String.Format("<script>window.open('{0}');</script>", fileName));

//                    }
