﻿// JScript File

function Confirmation(msg)
{
//    if (confirm("Are you sure you want to delete ?"))
    if (confirm(msg))
    {
        return true;
    }
    else
    {
        return false;
    }
    
}

function openPopup(strOpen)
{
	   window.open(strOpen,"","width=560,height=600,top=10,left=50,scrollbars=yes");
}

function ConfirmDelete()
{
 if(confirm("Are you sure, you want to delete this record")==true)
    return true;
 else 
    return false; 
}