<!--var displaywinvar textwinvar docwinvar imgwinvar vidwinvar audwinvar vidWidth = 240var vidHeight = 196var docWidth = 500var docHeight = 450var audWidth = 230var audHeight = 120var flaHeight = 560var flaWidth = 700var defaultWidth = 1010;var defaultHeight = 600;var defaultLocation = 1;var defaultDirectories = 1;var defaultStatus = 1;var	defaultToolStatus = 1;var defaultScrollStatus = 1;var defaultMenuBar = 1;var defaultResize = 1;var glMediaType = nullvar	screenHeight = screen.heightvar	screenWidth = screen.widthvar theWinName = "displaywin"var destinvar paramfunction createMediaWin(mediaType, destination, winWidth, winHeight, toolStatus, scrollStatus, location, directories, status, resize, menuBar) {	if(winWidth == undefined) { winWidth = defaultWidth; };	if(winHeight == undefined) { winHeight = defaultHeight; };	if(location == undefined) { location = defaultLocation; };	if(directories == undefined) { directories = defaultDirectories; };	if(status == undefined) { status = defaultStatus; };	if(toolStatus == undefined) { toolStatus = defaultToolStatus; };	if(scrollStatus == undefined) { scrollStatus = defaultScrollStatus; };	if(menuBar == undefined) { menuBar = defaultMenuBar; };	if(resize == undefined) { resize = defaultResize; };	parameters = 'width=' + winWidth + ',height=' + winHeight + ',toolbar=' + toolStatus + ',scrollbars=' + scrollStatus + ',location=' + location + ',directories=' + directories + ',status=' + status + ',resizable=' + resize + ',menubar=' + menuBar; 	displaywin=window.open(destination, theWinName, parameters);	displaywin.moveTo(0,0);    displaywin.focus();}//-->
