﻿// JScript File

 function OpenPopup(popupname)
     {
        window.showModalDialog(popupname , 'PopUp','dialogWidth:650px; dialogHeight:600px; help:no; modal:yes; center:yes; menubar:no; toolbars:no; maximize:no; resizable=no; status: no; scroll:yes;')
     }
    
    function ConfirmEnable()
    {
       
      
     var imgEnable=document.getElementById("ctl00_ContentPlaceHolder2_dlNotices_ctl00_ImgEnable") ;
     var confirmy;
     if(imgEnable.src==apppath + "../images/disablebtn.jpg")   
         {
          confirmy=confirm("Are you sure you want to Enable this Notices?");
         }
     else   if(imgEnable.src==apppath + "../images/enable.png")   
         {
            confirmy=confirm("Are you sure you want to Disable this Notices?");
         }
     if (confirmy== true)
     {
       return true;
     }
     else
     {
        return false;
      }
    } 
   
   
   function ConfirmApprove()
    {
       
      
     var imgApprove=document.getElementById("ctl00_ContentPlaceHolder2_dlNotices_ctl00_ImgApprove") ;
     var confirmy;
     if(imgApprove.src==apppath + "../images/disapprove.png")   
         {
          confirmy=confirm("Are you sure you want to Approve this Notices?");
         }
     else   if(imgApprove.src==apppath + "../images/approve.png")   
         {
            confirmy=confirm("Are you sure you want to Dis Approve this Notices?");
         }
     if (confirmy== true)
     {
       return true;
     }
     else
     {
        return false;
      }
    } 
