/**
 * 
 */

var win_height = 734;
var win_width = 1120;
var remote = null;

if(screen.height < win_height) win_width += 17;

/*$(document).ready(function() {
	if($.browser.webkit == true) {
		win_height -= 80;
	} else if($.browser.msie == true) {
		win_height -= 4;
		win_width -= 4;
	}
});*/

function openVideo(v) {
	$('#flash').empty().css('height','335px').css('background-image','url(media/images/anim/startflash_init.jpg)');
	v = parseInt(v);
	if(v < 1 && v > 6) v = 1; 
	remote = window.open('/filme/player.html?v='+v,'_video','resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no,hotkeys=no,dependent=yes,innerWidth=1120,innerHeight=738,width='+win_width+',height='+win_height);
	if(window.innerHeight) {
		//console.log($(remote).height(),$(remote).width());
		//console.log(window.innerWidth, window.innerHeight);
		if(window.innerHeight < win_height) {
			if(screen.width > win_width) {
				remote.resizeTo(win_width+17, win_height);
				//console.log('extend: ',window.innerWidth);
			}
		}
	}
}

