<!--

function doWindowOpen(Name, Width, Height, ChannelMode, Directories, ToolBar, Location, Status, MenuBar, Resizable, URL) {
	var iWidth	= jsLeast(screen.availWidth, Width);
	var iHeight = jsLeast(screen.availHeight, Height);
	var iLeft	= ((screen.availWidth - iWidth) / 2);
	var iTop	= ((screen.availHeight - iHeight) / 2);

	if (iLeft < 0){ iLeft = 0;}
	if (iTop < 0){ iTop = 0;}
	
	var sFeatures = "left=" + iLeft;
	sFeatures += " top=" + iTop;
	sFeatures += " width=" + iWidth;
	sFeatures += " height=" + iHeight;
	sFeatures += " channelmode=" + ChannelMode;
	sFeatures += " directories=" + Directories;
	sFeatures += " toolbar=" + ToolBar;
	sFeatures += " location=" + Location;
	sFeatures += " status=" + Status;
	sFeatures += " menubar=" + MenuBar;
	sFeatures += " resizable=" + Resizable;
	sFeatures += " scrollbars=no";
	
	var retHandle = window.open(URL, Name, sFeatures);
	
	
	return retHandle;
}

function jsLeast(Val1, Val2) {
    var xVal = Val1;
	if (Val1 > Val2){
	    xVal = Val2;
	}
	return xVal;
}	
// -->
