function openNewWin(myUrl, w, h)
{
  var szFeatures;
  var x, y;
  x = window.screenX + (window.outerWidth-w)/2;
  y = window.screenY + (window.outerHeight-h)/2;
  if( x < 0 ) x = 0;
  if( y < 0 ) y = 0;
  szFeatures = 'width='+w+',height='+h+',screenx='+x+',screeny='+y+',status=no,help=no,resizable=no,scroll=yes';
  //alert(szFeatures);
  window.open(myUrl, "AddToLightbox", szFeatures);
}
function imagePopup(source){
	var height = "";
	var width = "";
	var myImage = new Image();
	myImage.src = source;
	
	
	height = myImage.height;
	width = myImage.width;
	
	//alert(height);
	//alert(width);
	
	
	popup =  window.open('imagePopup.php?source='+source+'&height='+height+'&width='+width,source+'Popup','width='+width+',height='+height+',status=no,help=no,resizable=no,scroll=yes');
	
	popup.focus();
}
