<!--
function popWindow(imageInfo) {
	arrImage = imageInfo.split(',');
	id = arrImage[0];
		
	if (parseInt(navigator.appVersion)>3) {
 	     screenW = screen.width/2 - 100;
 	     screenH = screen.height/3; 
 	}
 	else { screenW = 100; screenH = 200; }
	
	window.open('photo.php?id='+id, '', 'menubar=no,toolbar=no,status=no,location=no,scrollbars=no,resizable=no,width='+arrImage[1]+',height='+arrImage[2]+',screenX=' +screenW+ ',screenY=' +screenH+ ',left=' +screenW+ ',top='+screenH);
}
//-->
