function EmailWindow(theLink) {
			var initialX =	100;
			var initialY = 100;
			//theLink = escape(theLink);
			
			//alert(theLink);
			
			if (navigator.appName == "Netscape")
			{
				//theWindow = open(theLink,'Lookup', 'width=505,height=500,' + 'screenX=' + initialX + ',screenY=' + initialY + ',scrollbars');
				theWindow = window.open(theLink,'Lookup', 'width=500,height=500,' + ',scrollbars');

			}
			else
			{
				theWindow = open(theLink, 'Lookup', 'width=500,height=500' + ',left=' + initialX + ',top=' + initialY + ',scrollbars');
			}
			theWindow.opener = self;
			theWindow.focus();
		}