function show_extooi_movie(layername, movie, movieName) {

		var x,y;
	    if (self.innerHeight) // all except Explorer
        {
            x = ((self.innerHeight)+135)*1,333;
            y = (self.innerHeight)+135;
        }
		else if (document.documentElement && document.documentElement.clientHeight)
			// Explorer 6 Strict Mode
		{
			x = document.documentElement.clientWidth;
			y = document.documentElement.clientHeight;
		}
		else if (document.body) // other Explorers
		{
			x = document.body.clientWidth;
			y = document.body.clientHeight;
		}

		var widthMovie = 640;
		var hightMovie = 480;
		if (y < 650){
			widthMovie = y-200;
			hightMovie = (widthMovie/4)*3;
		}
		var widthWindow= widthMovie;
		var hightWindow= hightMovie;
		var posLeft = 13;
		var posTop  = 300;

		window.open("./wk/templates/movieWindow.php?width="+widthMovie+"&height="+hightMovie+"&movie="+movie,
					"",
					"toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width="+widthWindow+",height="+hightWindow+",left="+posLeft+",top="+posTop+"");

	}

