// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "<p>&quot;From the olden days when sailing ships stopped in San Francisco, we have been known as an Opera town. How wonderful that this tradition is growing. Offering it to children will enrich their lives forever.&quot;<br><i>Dodie Rosekrans, Paris, Venice, San Francisco</i></p>"
random_text[number++] = "<p>&quot;At the performance of <i>Il Barbiere</i> we felt as if we were in Siviglia with friends called Figaro and Rosina.&quot;<br><i>Francesco Sciortino, Consul General of Italy, San Francisco</i></p>"
random_text[number++] = "<p>&quot;This is what opera should be and always was.&quot;<br><i>Harry de Wildt, San Francisco</i></p>"
random_text[number++] = "<p>&quot;San Francisco Lyric Opera - Enchanting and affordable!&quot;<br><i>Nob Hill Gazette</i></p>"
random_text[number++] = "<p>&quot;Some years ago I attended two performances by the San Francisco Lyric Opera. As I recall they gave <i>Rigoletto</i> and <i>La Bohème,</i> both major scale works. However, the renditions in a chamber opera setting perfectly satisfied. Conductor Barnaby Palmer secured rousingly resonant and sensitive response from the chamber orchestra, the production was excellent and the cast was well-chosen from professionals of high caliber. I left with deep admiration for the entire ensemble for rising to the daunting challenge with limited forces and great inspiration. I hope the management will continue to keep the high level for a long time to come.&quot;<br><i>George Jellinek, Music Director Emeritus, Radio Station WQXR New York<br>Author, Metropolitan Opera Panelist </i></p>"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);