/**************************************************/
/**  Copyright 2006 Black Diamond Services, Inc. **/
/**  Don Smith - 856-678-3073                    **/
/**  djlsmith@bdsvc.com                          **/
/**************************************************/

/**************************************************/
/**  Function to show/hide Detail viewer div    **/
/**  set mode = '' to hide the layer             **/
/**  set mode = 'block' to display the layer     **/
/**************************************************/
function toggle(mode, photoPath)
	{
	document.detailForm.photo.value = photoPath;
	document.detailForm.submit();
	modeDisp = (mode == 'block')? 'none' : 'block';
	if (document.getElementById)
		{
		// this is the way the standards work
		var style2 = document.getElementById('details').style;
		style2.display = mode;
		}
	else if (document.all)
		{
		// this is the way old msie versions work
		var style2 = document.all['details'].style;
		style2.display = mode;
		}
	else if (document.layers)
		{
		// this is the way nn4 works
		var style2 = document.layers['details'].style;
		style2.display = mode;
		}
	}
function viewDetail(mode, photoPath)
	{
	document.detailForm.photo.value = photoPath;
	document.detailForm.submit();
	}