// JavaScript Document
function zoom(id, number) {
	var h = 100;
	var w = 100;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	window.open('zoom.php?id='+id+'&number='+number,'popalbum' + id,'width='+w+', height='+h+', scrollbars=0, resizable=0, status=0, top='+t+', left='+l);
}
function zoomNews(id) {
	var h = 100;
	var w = 100;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	window.open('zoom-news.php?id='+id,'popalbum' + id,'width='+w+', height='+h+', scrollbars=0, resizable=0, status=0, top='+t+', left='+l);
}