function popupImage(thisImage){
	//alert(thisImage);
	url = '/popup/index.php?img=' + thisImage;
	attribs = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no';
	dimensions = ',width=760,height=565';
	var height = screen.height;
	var width = screen.width;
	var leftpos = width / 2 - 760 / 2;
	var toppos = height / 2 - 565/ 2;
	position = ',top=' + toppos + ',left=' + leftpos;
	window.open(url,'laceWindow',attribs + dimensions + position)
	//return false;
}
function resize() {
  var height = screen.height;
  var width = screen.width;
  var leftpos = width / 2 - 600 / 2;
  var toppos = height / 2 - 500/ 2;
  window.moveTo(leftpos, toppos);
  self.focus();
}