function tellMe()
{

// Default if offsetWidth doesn't work
var w = 425; // size of 787 wide default - logo width (328) - right column width (34)


var myTotalWidth = 0;
var myPadding = document.getElementById("photospace1").width;

if (window.screen) {

		if (document.getElementById("photoblock").offsetWidth)
			{w = document.getElementById("photoblock").offsetWidth;}
    }



var myPicsWidth = document.getElementById("photo1").width;

if (document.getElementById("photo2"))
	{
	myPicsWidth = myPicsWidth + document.getElementById("photo2").width;
	}

if (document.getElementById("photo3"))
	{
	myPicsWidth = myPicsWidth + document.getElementById("photo3").width;
	}


myTotalWidth = w - myPicsWidth - 14;

if (myTotalWidth > 60)
	{
	myPadding = 30;
	}
else if ((myTotalWidth <= 60) && (myTotalWidth > 14))
	{
	 if ((myTotalWidth % 2) == 1)
	 	{
		myTotalWidth = myTotalWidth - 1;
		}

	myPadding = myTotalWidth / 2;
	}
else if (myTotalWidth <= 14)
	{
	// no change
	myPadding = 7;
	}


document.getElementById("photospace1").width = myPadding;
document.getElementById("photospace2").width = myPadding;

}


//<!--
	function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring; }
//-->
