// JavaScript Document

function popup(file, $landscape) {
	if ($landscape == 0) {
		var width = 550;
		var height= 650;
	} else {
		var width = 700;
		var height= 500;
	}
	var left = (screen.width - width) / 2;
	var top  = (screen.height - height) / 4;
    detail = window.open("show-picture.php?file="+file, "detail", "width="+width+", height="+height+", menubar=no, directories=no, location=no, resize=yes, status=no,left="+left+",top="+top);
    if (window.focus) {detail.focus();}
}

