// JavaScript Document

function _popup(url) {
	var h = screen.height - 100
	var w = screen.width - 100;
	var winl = 50;
	var wint = 50;
	var winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,menubar=no,status=no';
	var wind = window.open(url, "Default", winprops);
}

function popSample(name) {
  _popup( '/image_viewer.php?image=' + name + '&page=1');
}

function popFname(fname) {
  _popup( '/image_viewer.php?fname=' + fname);
}
