﻿// JScript File

function fuconfirm()
    {     
       if((document.getElementById('rdoAccept').checked)==true)
       {
            var agree=confirm("Are you sure you want to Apprroved this User?");
            if (agree)
            return true ;
            else
            return false ;            
       }
       if((document.getElementById('rdoDecline').checked)==true)
       {
            var agree=confirm("Are you sure you want to DisApprroved this User?");
            if (agree)
            return true ;
            else
            return false ;
            
       } 
    }
    function fuconfirm1()
    {     
       if((document.getElementById('rdoAccept').checked)==true)
       {
            var agree=confirm("Are you sure you want to Apprroved this Author?");
            if (agree)
            return true ;
            else
            return false ;            
       }
       if((document.getElementById('rdoDecline').checked)==true)
       {
            var agree=confirm("Are you sure you want to DisApprroved this Author?");
            if (agree)
            return true ;
            else
            return false ;
            
       } 
    }

function fuconfirm2()
    {     
       if((document.getElementById('rdoAccept').checked)==true)
       {
            var agree=confirm("Are you sure you want to Apprroved this Comment?");
            if (agree)
            return true ;
            else
            return false ;            
       }
       if((document.getElementById('rdoDecline').checked)==true)
       {
            var agree=confirm("Are you sure you want to DisApprroved this Comment?");
            if (agree)
            return true ;
            else
            return false ;
            
       } 
    }
    
    function toggleDiv(divid,me)
    {
        if(document.getElementById(divid).style.display == 'block')
        {
            document.getElementById(divid).style.display = 'none';
            //document.getElementById(me).src='http://www.healthsuperstore.com/health/images/Common/minimize_icon.gif';
            document.getElementById(me).src='http://www.healthsuperstore.com/health/images/Common/plus_icon.gif';
        }
        else
        {
            document.getElementById(divid).style.display = 'block';
            document.getElementById(me).src='http://www.healthsuperstore.com/health/images/Common/minimize_icon.gif';
        }
    }