function printWindow(){
   version = parseInt(navigator.appVersion)
   if (version >= 4) window.print()
}

var ProfilePhotoWin=0;
function ProfilePhoto(URLStr, width, height)
{
  if(ProfilePhotoWin)
  {
    if(!ProfilePhotoWin.closed) ProfilePhotoWin.close();
  }
  ProfilePhotoWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left=50, top=50,screenX=50,screenY=50');
}

var EnlargePhotoWin=0;
function EnlargePhoto(URLStr, width, height)
{
  if(EnlargePhotoWin)
  {
    if(!EnlargePhotoWin.closed) EnlargePhotoWin.close();
  }
  EnlargePhotoWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left=50, top=50,screenX=50,screenY=50');
}


