/* copyright ©2002 NoTrace Sofware */
var imgWindow = (void 0);
var eid;
var popup;

var docReady = false;

// window.defaultStatus="Welcome to Images Today and Beyond ... Featuring Dave Myers Photography";
// window.status=window.defaultStatus;

function docDone( )
{
	docReady = true;

}


function bigImg( imgObj )
{
var winName = "ITandB";
var openStr;
var htmlStr;
var imgId;
var idxStart;
var idxEnd;

// get the Image Id from the Image Source string
	imgId=imgObj.src;
	idxEnd=imgId.lastIndexOf('.');
	idxStart=imgId.lastIndexOf('/') + 1;
	imgId=imgId.substring(idxStart, idxEnd);


	openStr='height=100,width=100,resizable=yes,statusbar=no,directories=no,';
	openStr=openStr + 'menubar=no,scrollbars=no,toolbar=no';
	htmlStr=popup + '?' + imgId + '+' + eid;

	if(imgWindow == (void 0) || imgWindow.closed )
	{
		imgWindow = window.open(htmlStr, winName, openStr);
	}
	else
	{
		imgWindow.location = htmlStr;
	}
	window.focus();  // make sure the main window retains focus
}

//to be nice
//close the image view window on leaving the curent page 
function closeBigView()
{	if(imgWindow != (void 0))
	{ imgWindow.close(); }
}

// onmouseover td-Img 
function imgOn( img )
{

	img.style.borderColor='#FFFF00';
	window.status="Copyright 2002-2003 Dave Myers Photography";
}

//onmouseout td-Img
function imgOff( img )
{

	img.style.borderColor="#ffffff";
	window.status=window.defaultStatus;
}
