<!--
function parentchanger(page) {
    if (opener && !opener.closed) {
        // load the page into the existing window
        // (the window that launched this popup)
		opener.focus();
        opener.top.location = page;
    } else {
        // open a new window and trick this window
        // into thinking it was opened by the new one
        var myWin = window.open(page, '', '');
        opener = myWin;
    }
}
//-->


