function popFull (url, width, height) {
	var thisWidth, thisHeight, newLeft, newTop;
	ie = (document.all)? 1 : 0;
	if (ie) {
		thisWidth = screen.availWidth - 10;
		thisHeight = screen.availHeight - 29;
		newLeft = screen.availLeft;
		newTop = screen.availTop;
		newwindow = window.open(url, "", "scrollbars=no,resizable=yes,width=" + thisWidth + ",height=" + thisHeight + ",left=" + newLeft + ",top=" + newTop);
	} else {
		thisWidth = screen.availWidth - 10;
		thisHeight = screen.availHeight - 29;
		newLeft = screen.availLeft;
		newTop = screen.availTop;
		newwindow = window.open(url, "", "scrollbars=yes,resizable=yes,width=" + thisWidth + ",height=" + thisHeight + ",left=" + newLeft + ",top=" + newTop);
	}
}