function VideoClick(filename)
{
	window.open('backoffice/Video.aspx?clip=' + filename,null,'height=380px,width=500px,left=' + (screen.width - 500)/2 + ',top=' + (screen.height - 380)/2 + ',menubar=no,toolbar=no,resizable=no,scrollbars=no,titlebar=no');			
}

function VideoOnMouseOver(obj)
{
	obj.style.cursor = 'hand';			
}

function VideoOnMouseOut(obj)
{
	obj.style.cursor = 'default';			
}
