/*
 * Copyright 2000-2008 namics ag. All rights reserved.
 */

/**
 * TV.Details class.
 * 
 * @author Remo Brunschwiler, namics ag
 */

TV.Details = function() {
	this.bindDetailsEvents();
};


/* ==========================================================
 * Opens the videoplayer (popup player)
 * ==========================================================
 */
TV.Details.prototype.openVideoPlayer = function(){	
	TV.$('.videoplayer').livequery('click', function () {
		var $this = TV.$(this);
		
		var b = 853;
		var h = 600;
		
		$window = TV.$(window);
		var x = ($window.width() - b) / 2;
		var y = ($window.height() - h) / 2;
		var segmentId = $this.attr('id');
		
		var windowProperties="scrollbars=yes, left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h;	
		var popup = window.open('http://www.sf.tv/videoplayer/sa_player.php?videouuid='+segmentId+'&skinid=popup', 'Videoplayer', windowProperties);	
		popup.focus();
		
		return false;
	});
};

/* ==========================================================
 * Binds the events
 * ==========================================================
 */
TV.Details.prototype.bindDetailsEvents = function () {
	var that = this;
	TV.$(document).ready(function () {
		that.openVideoPlayer();
	});
};
