

function OpenLinksAuthor(TheAuthor)
	{
	var	ReviewWindow;
	var	ReviewContent;
	//
	//	Open The Window
	//
	ReviewWindow	= window.open("",DetermineWindowType());
	//
	ReviewContent	=  '<html><title>Title Search</title>'
	ReviewContent	+= '<head>'
	ReviewContent	+= '</head>'
	ReviewContent	+= '<body onLoad="BSTORESCREEN.submit()";'
	ReviewContent	+= '<center>&nbsp;</center>'
	ReviewContent	+= '<FORM ACTION="SHERLOCKS-PUBLIC.EXE" NAME="BSTORESCREEN" METHOD="POST">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="PURPOSEID"     VALUE="BSTORESEARCH">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREKEYWORD" VALUE="' + TheAuthor + '">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREFORMAT"  VALUE="FB-AE">'
	ReviewContent	+= '</FORM>'
	ReviewContent	+= '</body></html>'
	//
	ReviewWindow.document.write(ReviewContent);
	ReviewWindow.document.close();
	ReviewWindow.focus();
	//
	}


function OpenLinksSelect(TheKeySet,TheAuthor,TheOption)
	{
	var	ReviewWindow;
	var	ReviewContent;
	//
	//	Open The Window
	//
	ReviewWindow	= window.open("",DetermineWindowType());
	//
	ReviewContent	=  '<html><title>Title Search</title>'
	ReviewContent	+= '<head>'
	ReviewContent	+= '</head>'
	ReviewContent	+= '<body onLoad="BSTORESCREEN.submit()";'
	ReviewContent	+= '<center>&nbsp;</center>'
	ReviewContent	+= '<FORM ACTION="SHERLOCKS-PUBLIC.EXE" NAME="BSTORESCREEN" METHOD="POST">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="PURPOSEID"     VALUE="BSTORESEARCH">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREKEYWORD" VALUE="' + TheAuthor + '">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREKEYLIST" VALUE="' + TheKeySet + '">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREOPTIONS" VALUE="' + TheOption + '">'
	ReviewContent	+= '<INPUT TYPE="hidden" NAME="BSTOREFORMAT"  VALUE="FE-AE">'
	ReviewContent	+= '</FORM>'
	ReviewContent	+= '</body></html>'
	//
	ReviewWindow.document.write(ReviewContent);
	ReviewWindow.document.close();
	ReviewWindow.focus();
	//
	}
