// Javascript Document
function openWindow(url,width,height,scrollbars)
{
	x = (125 - width)/2, y = (120 - height)/2;
	if (screen)
	{
		y = (screen.availHeight - height)/2;
		x = (screen.availWidth - width)/2;
	}

	window.open(url,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',scrollbars='+scrollbars);
}

function openGalleryWindow(url,width,height,scrollbars)
{
	x = (795 - width)/2, y = (530 - height)/2;
	if (screen)
	{
		y = (screen.availHeight - height)/2;
		x = (screen.availWidth - width)/2;
	}

	window.open(url,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',scrollbars='+scrollbars);
}