﻿// JScript File

 
    function openWindow(url, height, width)
    {
        var props = 'location=no,menubar=no,toolbar=no,height=' + height + ',width=' + width + '';
        window.open(url,'Image',props,true);
    }
    function confirmDelete(name)
    {
        window.blur();
        var confirmation = confirm("Are you sure you wish to delete the record '" + name + "'?");
        if(!confirmation)
        {
            window.clearInterval(0);    
            return false;
        }        
        window.blur();
        return true;
    }
 
