// JavaScript Document
var popUpWin=0;
function ViewContact(URLStr)
{
  if(popUpWin)
  { 
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=yes,resizable=1,copyhistory=yes,width=570,height=400,left=100, top=100,screenX=100,screenY=100');
}