<!--

function initWindow(newInset )
{
	if( document.getElementById)
		document.getElementById('openPdf').selectedIndex=0;
	newFinder("dummy,1700")
	newFinder(newInset);
}

function newFinder( newInset )
{
	var Finder_Source,Height;
	var Comma=newInset.indexOf(",");

	if( Comma != -1 )
	{
	  Finder_Source=newInset.substr(0, Comma);
	  Height = 'Height="' +  newInset.substr(Comma+1) + '"';
	}
	else
	{
	  Finder_Source=newInset;
	  Height='';
	}
	if( document.getElementById )
		document.getElementById('CatalogueSpace').innerHTML='<iframe src="' + Finder_Source + '" width="100%" ' + Height + '></iframe>'
}
//-->