			<!--

				function windowstate(filename, url, name, scroll, width, height, left, top)
				{

					// Set left and top for centered window
					if (left == "center")
					{
						left = (screen.availWidth / 2) - ((width / 2) + 4);
						if (left < 0)
						{
							left = 0;
						}
					}
					if (top == "center")
					{
						top = (screen.availHeight / 2) - ((height / 2) + 14);
						if (top < 0)
						{
							top = 0;
						}
					}
					
					// Set height and width for maximized window
					if (width == "max")
					{
						width = screen.availWidth-10;
					}
					if (height == "max")
					{
						height = screen.availHeight-30;
					}

					windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=no,copyhistory=yes,alwaysRaised=yes,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "'");
					
					
					//window.parent.parent.opener.focus()
					newWindow = window.open(filename, name, windowops);
					newWindow.focus();
					//newWindow.parent.opener.location.href = url;
					return;
				}                

				

			// -->
						