<!--
function ShowVideo(wndTitle, objURL, WIDTH, HEIGHT) {
		windowprops = "left='20',top='20',width=" + (WIDTH+32) + ",height=" + (HEIGHT+60) + ",scrollbars=yes";
		windowprops += ",status=yes,location=no,toolbar=no,resizable=yes";
		text = "<html><head><title>" + wndTitle + "</title></head><body bgcolor='white'>";
		text += "<center>";
		text += "<embed src='" + objURL + "' width=" + WIDTH + " height=" + HEIGHT + "pluginspage='http://www.apple.com/quicktime/'></embed>";
		text += "<br><font face='arial, helvetica' size='-1'><a href='#' onclick='window.close()'>close</a></font>";
		text += "</center></body></html>";
		preview = window.open("", wndTitle, windowprops);
		preview.document.open();
		preview.document.write(text);
		preview.document.close();
		}
//-->