﻿// JScript File

function confirmDelete()
{
    var agree=confirm("Delete this item?");
    if (agree)
        return true ;
    else
        return false ;
}


var curr_id;
function ShowPanel(id){    
    if(curr_id != null && curr_id!='')
        document.getElementById(curr_id).style.display='none';
       
    curr_id=id;
    if(curr_id != null && curr_id!='')
        document.getElementById(curr_id).style.display='';
}




function ShowHidePanel(id){    
    document.getElementById(id).style.display=(document.getElementById(id).style.display=='none' ? '' : 'none');
    return false;
}

function ShowImage(id) {
    document.getElementById('or'+id).src="PhotoO"+id+".aspx";
}

