// JavaScript Document
var newwindow;
function poptastic(url, thename, windowsize)
{
	newwindow=window.open(url,thename, windowsize);
	if (window.focus) {newwindow.focus()}
}
function galleryImage(imageTitle, imageFile, windowsize)
{
	newwindow=window.open("gallery-image.php?t="+imageTitle+"&i="+imageFile,"galleryImage", windowsize);
	if (window.focus) {newwindow.focus()}
	
}