
var openeddetails=false;
var detailswin;

function open_Details_Window(theURL,theWidth,theHeight) {
	if (openeddetails) {
		if(detailswin.closed==false) {
			detailswin.location.href=theURL;
			detailswin.focus();
		}
		else	{
			opendetails(theURL,theWidth,theHeight);
		}
	}
	else	{
		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,'buildingdetails',detailsDetails);
		openeddetails=true;
}

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


