/// <summary> Writes all the data about this item in MARC-ish HTML for display online</summary>
 /// <param name="Options"> Dictionary of any options which this metadata reader/writer may utilize </param>
 /// <param name="Width"> Width value for use within the rendered tables </param>
 /// <returns> Complete HTML as a string, ready for display </returns>
 public string Get_MARC_HTML(Dictionary<string, object> Options, string Width )
 {
     MARC_HTML_Writer marcHtmlWriter = new MARC_HTML_Writer();
     return marcHtmlWriter.MARC_HTML(this, Width, Options);
 }
 /// <summary> Writes all the data about this item in MARC-ish HTML for display online</summary>
 /// <param name="Collections"> List of the names of the collections linked to this item </param>
 /// <param name="Include_Endeca_Tags"> Flag indicates whether to include tags specific to Florida's implementation of Endeca </param>
 /// <param name="Width"> Width value for use within the rendered tables </param>
 /// <param name="System_Name"> Name of the host system, which is added into the MARC record </param>
 /// <param name="System_Abbreviation"> Abbreviation for the host system, which is added into the MARC record </param>
 /// <returns> Complete HTML as a string, ready for display </returns>
 public string Get_MARC_HTML(List<string> Collections, bool Include_Endeca_Tags, string Width, string System_Name, string System_Abbreviation)
 {
     MARC_HTML_Writer marcHtmlWriter = new MARC_HTML_Writer();
     return marcHtmlWriter.MARC_HTML(this, Width, MARC_Sobek_Standard_Tags(Collections, Include_Endeca_Tags, System_Name, System_Abbreviation));
 }