var detailWin=0;

function orderDetail(sMode,thisID)
{
	var left=100;
	var top=100;
	var width=600;
	var height=500;
	sURL = 'Details.cfm?Mode='+sMode+'&ThisID='+thisID;
	if(detailWin)
	{
		if(!detailWin.closed)detailWin.close();
	}
	detailWin=open(sURL,'detailWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function closeDetails(sMode, iID)
{
	var URL = unescape(window.opener.location.pathname);
	window.opener.location.href = URL;
	self.close();
}