// JavaScript Document
function openPageURL(key) {
  pageURLs = new Array(); // (1 - 27 is navigation bar links),  
  pageURLs[1] = 'main.html'; // home
  pageURLs[2] = 'new/about.htm'; // about us
  pageURLs[3] = 'new/ghia_with_artists.htm'; // ghia with the artists
  pageURLs[4] = 'new/customer_feedback.htm'; // ghia customer feedback
  pageURLs[5] = 'new/newsletter.htm'; // newsletter
  pageURLs[6] = 'new/about_events.htm'; // events
  pageURLs[7] = 'new/othersites.htm'; // other websites
  pageURLs[8] = 'page2.html'; // gallery
  pageURLs[9] = 'http://www.gottahavitart.com/store'; // online store
  pageURLs[10] = 'http://www.gottahavitart.com/shop/index.php?action=category&id=1&subid=1'; // open editions
  pageURLs[11] = 'http://www.gottahavitart.com/shop/index.php?action=category&id=1&subid=2'; // limited editons
  pageURLs[12] = 'http://www.gottahavitart.com/shop/index.php?action=category&id=1&subid=3'; // originals
  pageURLs[13] = 'new/custom_framing.htm'; // custom framing
  pageURLs[14] = 'new/artist_bios.htm'; // artist bios
  pageURLs[15] = 'page2.html'; // art 101
  pageURLs[16] = 'new/art_terms.htm'; // art terms
  pageURLs[17] = 'new/books.htm'; // art books
  pageURLs[18] = 'new/art_care.htm'; // caring for art
  pageURLs[19] = ''; // speical programs
  pageURLs[20] = 'new/fundraising.htm'; // art fundraisers
  pageURLs[21] = 'new/home_art_show.htm'; // home show
  pageURLs[22] = 'new/wishlist.htm'; // art wish list
  pageURLs[23] = 'page2.html'; // customer service
  pageURLs[24] = 'new/ordering.htm'; // policies
  pageURLs[25] = 'new/customer_faq.htm'; // faq
  pageURLs[26] = 'new/customer_appointments.htm'; // private appointments
  pageURLs[27] = 'new/contact.htm'; // contact us
  pageURLs[28] = 'http://www.gottahavitart.com/store'; // Tell a Friend
  pageURLs[29] = "http://www.gottahavitart.com/new/art_terms.htm"; // Art 101
  pageURLs[30] = "http://www.gottahavitart.com/store"; // Online Store
  parent.main.window.location.href = pageURLs[key];
}

