function doPopup(URL, WIDTH, HEIGHT) {
	url = URL;
	width = WIDTH;  // width of window in pixels
	height = HEIGHT; // height of window in pixels
	windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + "toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars=no," + "resizable=no,";
	preview = document.open(URL, "_blank", windowprops);
}

function doPopup2(URL, WIDTH, HEIGHT, SCROLLBARS) {
	url = URL;
	width = WIDTH;  // width of window in pixels
	height = HEIGHT; // height of window in pixels
	windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + "toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars="+SCROLLBARS+"," + "resizable=no,";
	preview = document.open(URL, "_blank", windowprops);
}


function OpenVideo(videofile) {
     /*video = 'http://dev2007.lomtec.com/kooperativa/flash/flvplayer.swf?file=http://dev2007.lomtec.com/kooperativa/flash/kampane/' + videofile;*/
     video = 'http://www.kooperativa.sk/flash/flvplayer.swf?file=http://www.kooperativa.sk/flash/kampane/' + videofile;
	windowprops = "left=150,top=150,width=320,height=250,toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars=no," + "resizable=no,";

	preview = document.open(video, "_blank", windowprops);
}

