<!--

function popWin(url, width, height) {

	if (!width) width=300;
	if (!height) height=250;
	window.open("/video.php?file=" +url+ "", "win", "width="+width+", height="+height+", top=200, left=200, resizable");

}

function openWin(URL, WIDTH, HEIGHT) {
	window.open(URL, "popup", "width="+WIDTH+", height="+HEIGHT+", scrollbars=yes, status=yes, menubar=no, location=no, resizable=yes");
}

//-->