﻿    function GoToUrl(url)
    {
        window.location = url;
    }

    function DeleteObject(objectName, url)
    {
	    var message = 'Are you sure you want to delete this ' + objectName + '?';
        if (confirm(message) == false)
        {
            return false;
        }

        GoToUrl(url);
    }

    function OpenPlayWindow(url, width, height)
    {
        var detailsWindow = window.open(url, "PlayWindow", "width=" + width + ",height=" + height);
        detailsWindow.focus();
     
        return false;
    }