//Reposition function will evenly space a row of images to fit a desired width
<!--Begin
function reposition(targetW,top,img)
{
var num = img.length;
var availW = document.body.clientWidth - 60;
var leftMarg = (availW - targetW)/2;
if (leftMarg < 0)
{	leftMarg = 0;	}

var imgsW = 0;

var Pic = new Array();
for (i = 0; i < num; i++)
{
Pic[i] = new Image();
Pic[i].src = img[i].src;
}

for (i=0; i<num; i++)
{
	imgsW += Pic[i].width;
}

var space = targetW - imgsW;
if (num > 1)
{	var spacer = space / (num - 1);	}
else
{	spacer = space;	}

var left = leftMarg;

for (i=0; i<num; i++)
{
	img[i].border = 0;
	img[i].style.position = 'absolute';
	img[i].style.left = left;
	img[i].style.top = top;
	left += Pic[i].width + spacer;
}

}

//Function to write footer on the bottom of a page
function footer()
{
	document.write('<span id="address"><br>&copy; 2006 (and before) William McAllister - All rights reserved<br>262 1/2 ACADEMY AVENUE, PITTSBURGH, PA 15228<br>phone:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mobile:<br>412-561-0987&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;412-251-1749 </span>');
}

//Function to make a simple popup window
function win(url)
{	window.open(url,'','scrollbars=yes,resizable=yes,width=650,height=600');	}
// End -->