<!--

function showPerson(strPage, intWidth, intHeight) {
 if (intWidth == null || intWidth == undefined) {
  intWidth = 525;
 }//if
 if (intHeight == null || intHeight == undefined) {
  intHeight = 600;
 }//if

 var imageWindow = window.open(strPage, "imageWindow", "top=20, left=20, width=" + intWidth + ", height=" + intHeight + ", toolbar=0, resizable=0, scrollbars=1, status=0, menubar=0, location=0");
 imageWindow.focus();
}//function


//-->