<!--
function PopUpNewWindow(targetURL)
{
NewWindow = window.open(targetURL,'NewWinAtt','width=300,height=450,locationbar=yes,menubar=no,scrollbars=yes,status=no,resizable=yes');
NewWindow.moveTo(screen.width-340, 0);
NewWindow.focus();
}

var NewWindowSearch = null;

function PopUpNewWindowSearch(targetURL)
{
    if((NewWindowSearch != null) && (!NewWindowSearch.closed)) {
        NewWindowSearch.focus();
    }
    else {
        NewWindowSearch = window.open(targetURL,'search','width=400,height=350,locationbar=yes,menubar=no,scrollbars=yes,status=no,resizable=yes');
        NewWindowSearch.moveTo(screen.width-410, 0);
        NewWindowSearch.focus();
   }
}
//-->
