// JavaScript Document
<!--

function openNewWindow(FileURL, W, H) {
	aWindow=window.open(FileURL,"OtherWin","width="+W+",height="+H+",resizable=yes,scrollbars=yes");
}

function openNewWindowNoScroll(FileURL, W, H) {
	aWindow=window.open(FileURL,"AppletWin","width="+W+",height="+H);
}

// -->
