/* "Who Is ... ?" script  */




function openWindow(url) {
popupWin = window.open(url, 'remote', 'toolbar=no,resizable=yes,scrollbars=yes,status=yes,location=no,screenX=10,screenY=10,top=10,left=10,alwaysRaised=yes,z-lock=yes')

popupWin.focus();
}

function changeWindow(url) {
if (window.remote) 
remote.location.href = "[url]";
else openWindow(url);
}

