function maxiImage(url, h, w)
{
  var left = 10;
  var top = 10;
  var h = 600;
  var w = 820;

  wintype="toolbar=0,menubar=0,location=0,scrollbars=1,resizable=1,status=1,top="+top+",left="+left+",height="+h+",width="+w;
  var newwin = window.open("image.php?image="+url,"maxiImage",wintype);
  newwin.focus();
}

function closeOpen()
{
	if(opener)
	{
		window.close();	
	}else
	{
		document.location="/";	
	}
}