// JavaScript Document
function opendetail(id,offset)
{
	win = window.open('plugin.php?plugin=galerie&file=picture_show_window.php&offset=' + offset + '&picid=' + id,'detail','width=550,height=430,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	win.focus();
}

function showdetail(id,offset)
{
	opener.location.href = "plugin.php?plugin=galerie&file=picture_show.php&picid=" + id + "&offset=" + offset;	
	window.close();
}

function centerscreen(xsize,ysize)
{
	ScreenWidth = screen.width; 
	ScreenHeight = screen.height; 
	xpos = (ScreenWidth/2)-(xsize/2); 
	ypos = (ScreenHeight/2)-(ysize/2); 
	
	window.moveTo(xpos,ypos); 
	window.resizeTo(xsize,ysize);
}
