﻿// ====================================================
//	Author:			Taher Scherzay
//	Description: 	Modal Popup
// ====================================================

// ====================================================
var popup = null; 
function Modal_ShowModal(modal)
{
    this.popup = $find(modal); 
    this.popup.show(); 
} 

// ====================================================
function Modal_BtnClick(source)
{ 
    this.popup.hide(); 
    __doPostBack(source.name, ''); 
} 

// ====================================================
function Modal_CancelClick()
{ 
    this.popup.hide(); 
    this.popup = null; 
} 
