
	var TTCWindow = null;

	function pullUpTTC()
	{
		if (!TTCWindow || TTCWindow.closed)
		{
			var browserName = window.navigator.appName;
			var theWindowHeight = 690;
			if (browserName == "Netscape")
			{
				TTCWindow = window.open("contactTTC.htm", "",
					"height=" + theWindowHeight + ",resizable,scrollbars,width=395");
			}
			else if (browserName == "Microsoft Internet Explorer")
			{
				TTCWindow = window.open("contactTTC.htm", "",
					"height=" + theWindowHeight + ",resizable,scrollbars,width=395,top=23,left=5");
			}
			else
			{
				TTCWindow = window.open("contactTTC.htm", "Job Application",
					"height=" + theWindowHeight + ",resizable,scrollbars,width=395");
			}
		}
	}//function pullUpTTC()

