var Quotation=new Array() 


Quotation[0] = "Include your self stamped/addressed envelope for us to send your documents back.";
Quotation[1] = "If divorced, please indicate the name of the Judge signing your divorce.";
Quotation[2] = "Contact our office via phone, fax, or e-mail for fees (281) 920-3456.";
Quotation[3] = "Include a legalized copy of your Birth Certificate.";
Quotation[4] = "Please let us know the name of your Wedding Coordinator and the Hotel/Resort of your choice.";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

