function openVideo() {	
	openDialog();
	
	var so = new SWFObject("swf/video-player.swf", "medomak", "626", "478", "9", "#000000");
	so.addParam("allowFullScreen", "true");
	so.addParam("wmode", "transparent");
	so.addVariable("startOnLoad", "true");
	so.addVariable("videoPath", "../video/medomak-nbc.f4v");
	so.addVariable("stillPath", "images/medomak-nbc.jpg");
	so.write("videoPlayer");
	}

function closeVideo() {
	document.getElementById("videoPlayer").innerHTML = "";
	closeDialog();
	}


function openDialog() {
	window.scrollTo(0,0);
	document.body.style.overflow = 'hidden';
	document.getElementById("dialog").style.display = "block";
	document.getElementById("screen").style.display = "block";
	}

function closeDialog() {
	document.getElementById("dialog").style.display = "none";
	document.getElementById("screen").style.display = "none";
	document.body.style.overflow = 'auto';
	}


