/**
 * @author Cristiano
 * 
 */

function loadVideo(video)
{
	var dimX = screen.width; //larghezza pagina
	var dimY = screen.height; //lunghezza pagina
	
	if (document.all) // IF IE
	{
		dimX = document.body.parentNode.scrollLeft + (dimX / 3);
		dimY = document.body.parentNode.scrollTop + 100;
	}
	else
	{
		dimX = window.scrollX + (dimX / 3); //larghezza pagina
		dimY = window.scrollY + 100; //lunghezza pagina
	}
	
	var wall = document.createElement("div");
	wall.style.position = "absolute";
	wall.style.top = dimY + "px";
	wall.style.left = dimX + "px";
	wall.style.width = "480px";
	wall.style.height = "300px";
	wall.style.backgroundColor = "#000000";
	wall.style.border = "1px solid white";
	
	var box_video = document.createElement("div");
	box_video.id = "box_video";
	box_video.style.position = "relative";
	box_video.style.top = "10px";
	box_video.style.width = "480px";
	box_video.style.height = "260px";
	box_video.style.backgroundColor = "#FFFFAA";

	var link = document.createElement("a");
	link.className = "chiudi";
	link.style.position = "relative";
	link.style.color = "#ffffff";
	link.style.top = "23px";
	link.style.left = "230px";
	link.innerHTML = "Chiudi";
	link.href = "javascript:;";
	link.onclick = function() 
	{ 
		document.body.removeChild(wall); 
	}
	
	wall.appendChild(box_video);
	wall.appendChild(link);
	document.body.appendChild(wall);
	
	var s1 = new SWFObject("/mediaplayer/player.swf", "mediaplayer", "480", "260", "7");
	s1.addVariable("width", "480");
	s1.addVariable("height", "260");
	/*s1.addVariable("file", "/video/" + video + ".flv");*/
	s1.addVariable("file", video);
	s1.addVariable("autostart", "true");
	/*s1.addVariable('image', 'image.jpg');*/
	s1.write("box_video");
}
