<!-- //

 // create js arrays to hold the data for selStore

 var aryStoreData = new Array();

 aryStoreData[0] = new Array();
 aryStoreData[0][0] = new Option('Select a State','0');

aryStoreData[1] = new Array();
 aryStoreData[1][0] = new Option('Valley Mall','http://www.kingsjewelry.com/locations_45.shtml');

 aryStoreData[2] = new Array();
 aryStoreData[2][0] = new Option('Ashtabula Mall','http://www.kingsjewelry.com/locations_19.shtml');
 aryStoreData[2][1] = new Option('Carnation Mall','http://www.kingsjewelry.com/locations_42.shtml');
 aryStoreData[2][2] = new Option('Colony Square','http://www.kingsjewelry.com/locations_53.shtml');
 aryStoreData[2][3] = new Option('Eastwood Mall','http://www.kingsjewelry.com/locations_18.shtml');
 aryStoreData[2][4] = new Option('Fort Steuben Mall','http://www.kingsjewelry.com/locations_47.shtml');
 aryStoreData[2][5] = new Option('Ohio Valley Mall','http://www.kingsjewelry.com/locations_21.shtml');
 aryStoreData[2][6] = new Option('Southern Park Mall','http://www.kingsjewelry.com/locations_17.shtml');
 aryStoreData[2][7] = new Option('Summit Square','http://www.kingsjewelry.com/locations_39.shtml');
 
 aryStoreData[3] = new Array();
 aryStoreData[3][0] = new Option('Beaver Valley Mall','http://www.kingsjewelry.com/locations_03.shtml');
 aryStoreData[3][1] = new Option('Butler Commons','http://www.kingsjewelry.com/locations_02.shtml');
 aryStoreData[3][2] = new Option('Century III Mall','http://www.kingsjewelry.com/locations_51.shtml');
 aryStoreData[3][3] = new Option('Chambersburg Mall','http://www.kingsjewelry.com/locations_09.shtml');
 aryStoreData[3][4] = new Option('Clarion Mall','http://www.kingsjewelry.com/locations_32.shtml');
 aryStoreData[3][5] = new Option('Cranberry Mall','http://www.kingsjewelry.com/locations_12.shtml');
 aryStoreData[3][6] = new Option('Cranberry Shoppes','http://www.kingsjewelry.com/locations_30.shtml');
 aryStoreData[3][7] = new Option('Greengate Center','http://www.kingsjewelry.com/locations_24.shtml');
 aryStoreData[3][8] = new Option('Indiana Mall','http://www.kingsjewelry.com/locations_11.shtml');
 aryStoreData[3][9] = new Option('Logan Valley Mall','http://www.kingsjewelry.com/locations_35.shtml');
 aryStoreData[3][10] = new Option('Millcreek Mall','http://www.kingsjewelry.com/locations_52.shtml');
 aryStoreData[3][11] = new Option('Monroeville Mall','http://www.kingsjewelry.com/locations_38.shtml');
 aryStoreData[3][12] = new Option('Mt. Nebo','http://www.kingsjewelry.com/locations_25.shtml');
 aryStoreData[3][13] = new Option('Nittany Mall','http://www.kingsjewelry.com/locations_26.shtml');
 aryStoreData[3][14] = new Option('Pittsburgh Mills','http://www.kingsjewelry.com/locations_29.shtml');
 aryStoreData[3][15] = new Option('Shenango Vally','http://www.kingsjewelry.com/locations_06.shtml');
 aryStoreData[3][16] = new Option('Mall at Robinson','http://www.kingsjewelry.com/locations_49.shtml');
 aryStoreData[3][17] = new Option('Union Square Plaza','http://www.kingsjewelry.com/locations_07.shtml');
 aryStoreData[3][18] = new Option('Uniontown Mall','http://www.kingsjewelry.com/locations_48.shtml');
 aryStoreData[3][19] = new Option('Washington Center','http://www.kingsjewelry.com/locations_04.shtml'); 
 aryStoreData[3][20] = new Option('Waterfront Center','http://www.kingsjewelry.com/locations_36.shtml');
 
 aryStoreData[4] = new Array();
 aryStoreData[4][0] = new Option('Martinsburg Mall','http://www.kingsjewelry.com/locations_41.shtml');
 aryStoreData[4][1] = new Option('Meadowbrook Mall','http://www.kingsjewelry.com/locations_50.shtml');

 function reloadStores(curStateIndex)  // pass in the current State index
 {
    if ( curStateIndex < 0 ) return;  // no state selected, so do nothing

    var aryStoreOpts = document.myform.selStore.options;  // points to selStore options array

    aryStoreOpts.length=0;  // first, clear the current Store options ...

    // then re-load the Store options with values for the current State
    for ( var i=0,n=aryStoreData[curStateIndex].length; i<n; i++ )
    {
       //// the line below no longer works in IE5 (it works in IE4 and NS4+).
       // aryStoreOpts[aryStoreOpts.length-1] = new Option(aryStoreData[curStateIndex][i].text,aryStoreData[curStateIndex][i].value);
       //// therefore, it now takes three lines to do the same thing:

       aryStoreOpts.length++;  // add a new Option, then put data in it (below)
       aryStoreOpts[aryStoreOpts.length-1].text  = aryStoreData[curStateIndex][i].text;
       aryStoreOpts[aryStoreOpts.length-1].value = aryStoreData[curStateIndex][i].value;
    }
 }

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}
// -->