function imgPop(imgSrc) {   
  var temp = new Array();
  temp = imgSrc.split('thumb/thumb_');
  var popImgSrc = temp[0]+temp[1];

  var strUrl = "img.php?imgSrc="+popImgSrc;
  window.open( strUrl , "", "width=200,height=200,scrollbars=no,toolbars=no,menubars=no,location=no,status=no");
}

function sizer() {
  if (navigator.appVersion.indexOf("AOL")>0){
  } else {
  	imgurl=document.photo.href
  	ubsr = navigator.appName.indexOf("etscape")
  	usys = navigator.appVersion.indexOf('Win')
  	iheight = document.photo.height;
  	iwidth = document.photo.width;
  	if (ubsr>0) {
  		iwidth = iwidth+42;
  		iheight = iheight+82
  	} else {
  		iwidth = iwidth+52;
  		iheight = iheight+70
  	}
  	if (iheight < 100) {
  		iheight = 100;
  	}
  	if (iwidth < 110) {
  		iwidth = 110;
  	}
  	if (iwidth > window.screen.width) {
  		iwidth=window.screen.width
  	}
  	if (iheight > window.screen.height) {
  		iheight=window.screen.height
  	}
  	window.resizeTo(iwidth, iheight);
  	window.focus();
  	if (screen.width) {
  		xmove = (screen.width - iwidth)/2
  		ymove = (screen.height - iheight)/2
  		window.moveTo(xmove,ymove);
  	}
  }
}