// ---------------------------------------------------------------------
// Description:		SendVideo
//					Provides operation to open the SendVideo form.
//
// Autor:			Robin Saberi
// Date:			04.10.2005
// 
// (c) by team ModulAcht. All rights reserved
// ---------------------------------------------------------------------

// ---------------------------------------------------------------------
// Open form
// ---------------------------------------------------------------------
var SendVideo = 
{
    initialize : function()
    {
    },
    
    Open : function(resourceUrl)
    {
        var clipId = clipInterface.get('clipId');
        var videoPlayed = clipInterface.get('videoPlayed');
        var wnd = window.open(resourceUrl + "/system/sites/sendvideo.aspx/clips/clip-" + clipId + "/played-" + videoPlayed, "wnd", "width=300,height=310");
	    
	    return false;
	}
}

























