function openDetailsWindow(loDoc)
{
 window.open(loDoc, 'DetailsWindow', 'dependent=0,screenX=5,screenY=5,width=660,height=600,toolbar=no,menubar=no,location=no,statusbar=no,personalbar=no,locationbar=no,directories=no,scrollbars=yes,resizable=yes');
}

function openImageWindow(loDoc)
{
 window.open(loDoc, 'ImageWindow', 'dependent=0,screenX=5,screenY=5,width=860,height=680,toolbar=no,menubar=no,location=no,statusbar=no,personalbar=no,locationbar=no,directories=no,scrollbars=yes,resizable=yes');
}

function openURLinMainWindow(thePathName) {
	window.opener.location.href=thePathName;
	//window.location.href=thePathName;
	self.close();
}

function openBrWindow(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}

function showDetails(elem,name)
 {
	var x = document.getElementById(elem).innerHTML;
	if (x=='')
	{
	   x='No details to display.';
	}
	document.getElementById(elem).innerHTML = x;
	if (document.getElementById(name).value=='Hide')
	{
	   document.getElementById(elem).style.display='none';
	   document.getElementById(name).value='Details';
	}
	else
	{
	   document.getElementById(elem).style.display='block';
	   document.getElementById(name).value='Hide';
	}
 }

function toggleDetails(elem)
 {
	if (document.getElementById(elem).style.display=='block')
	{
	   document.getElementById(elem).style.display='none';
	}
	else
	{
	   document.getElementById(elem).style.display='block';
	}
 }