﻿// JScript File
			function OpenNewSearchWindow(content,title){
				top.consoleRef = window.open('','myconsole',
											+',menubar=0'
											+',toolbar=0'
											+',status=0'
											+',scrollbars=1'
											+',resizable=1'
											)

				top.consoleRef.document.writeln("<html>");
				top.consoleRef.document.writeln("	<head>");
				if(title == null){
					title="Error"
				}
				top.consoleRef.document.writeln("		<title>" + title + "</title>");
				top.consoleRef.document.writeln("	</head>");
				top.consoleRef.document.writeln("	<body onload=\"document.forms[0].submit();\">");
				top.consoleRef.document.writeln("		<form name=\"" + title + "Page\" method='post' action='http://www.umassmed.edu/searchpage/index.cfm'>");
				top.consoleRef.document.writeln(content);
				top.consoleRef.document.writeln("		</form>");
				top.consoleRef.document.writeln("	</body>");
				top.consoleRef.document.writeln("</html>");
				top.consoleRef.document.close()
			}
