<!--

function open_Details_Window(theURL,theWidth,theHeight) {
	if (isOpen(detailswin))	{
			close_Details_Window(detailswin);
	}
	opendetails(theURL,theWidth,theHeight);
}

function opendetails(theURL,theWidth,theHeight)	{

detailsDetails = 'scrollbars=yes,resizable=yes,width=' + theWidth + ',height=' + theHeight +  ',left=1,top=1';
detailswin=window.open(theURL,'imagedetails',detailsDetails);
		openeddetails=true;
}

function close_win()	{
	close_Details_Window(detailswin);
}

function close_Details_Window(theWin)	{
	if (isOpen(theWin)) {
		theWin.close()
		}
}

function isOpen(theWindow)	{
	var isItOpen=false;
	if(theWindow)	{
		if(theWindow.closed==false)	{
			isItOpen=true;
		}
	}
	return isItOpen;
}
//-->
