//displays additional details for selected information in a new popup browser window.

function display_details(URL, page)
{
	if (screen.height > 600) height = 690
 	if (screen.height <= 600) height = 525

	if (page == 'info')
	{
		width = "725" 
	}
	else
	{
		width = 700
	}

    wind_obj = window.open
	(
        URL,
		"diPEG_Details",
        "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width="+width+", height="+height
    )

	wind_obj.moveTo(screen.width - width, 0)
}