// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<strong>Q: How long will it take before I receive my driver’s license or ID card? </strong><br/>A: You should receive your driver’s license or ID card at the mailing address you provided within 10 business days.  <br><br> <strong>Q: If my driver’s license or ID card doesn’t arrive, do I have to get another photo taken? </strong><br/>A: Perhaps; it will depend on individual circumstances.  <br/> <a href ='/centralissuance/faq.html'>View all questions</a>";

Quotation[1] = "<strong>Q: Will businesses accept the temporary permit as identification for cashing checks, buying alcohol or tobacco products, entering gambling facilities, etc.?  </strong><br/>A: Each business must decide if the temporary permit will be accepted. However, according to our information, this has not proven to be a problem in the other 22 states where central issuance exists.<br>   <a href ='/centralissuance/faq.html'>View all questions </a> "; 

Quotation[2] = "<strong>Q: Do I have to pay extra for the temporary permit?  </strong><br/>A: No. There is no additional charge for the temporary permit. It is included in the issuance or renewal fee for a driver’s license or ID card.  <br><br> <strong>Q: Does the temporary permit expire?  </strong><br/>A: Yes. The temporary permit will be valid for 30 days from the date of issuance.  <br/> <a href ='/centralissuance/faq.html'>View all questions</a>";


Quotation[3] = "<strong>Q: Where will the cards be produced and shipped from to Iowans?  </strong><br/>A: Driver’s license and identification cards will be produced at a facility in the United States by an experienced issuance firm that has secure facilities and processes, and employs persons that have undergone rigorous background checks. </a> <br><a href ='/centralissuance/faq.html'>View all questions </a> ";

Quotation[4] = "<strong>Q: Does central issuance affect both driver’s licenses and identification cards?  </strong><br/>A: Yes. It affects all driver’s licenses and identification cards. <br/><br/><strong>Q: How much more will this cost? </strong><br/>A: There is no increased cost to individuals.  <br/><br/><a href ='/centralissuance/faq.html'>View all questions </a> ";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

