//alert('Library Loaded');

function GoToNew(page) {
	//alert('Got Here');
	window.open(page, 'TLNew','scrollbars, resizable, width=640, height=540', 'TLNew');
}

function ChangeParent(page) {
	window.opener.location.href = page;
	window.self.close();
}

function GoToContacts() {
	window.opener.location.href = "/Contact.asp";
	window.self.close();
}