

function changeParent(url) {
	if (url.indexOf('mailto:') < 0) {
		parent.window.opener.location = url;
		parent.window.close();
	}
	return false;
}
// event handler -  onClick="changeParent(this.href)"



//function newWindow(url) {window.open(url, "_blank"); parent.window.close(); return false;}


