// JavaScript Document

  function setItemH(){      //form, select, and image ID's (ZZ)have to be hardcoded.dunno why. dammit.
//	  alert ("one") 
//alert(  "one:m="+ m +"\n" + "n="+ n +"\n"+"p="+p)	 
    n = d.entryf3.selectItemHvy.selectedIndex
  		d.entryf3.selectItemCpt.selectedIndex=0; 
 		d.entryf3.selectItemXHvy.selectedIndex=0; 

//alert(  "twoH:" + "\n" + "m="+ m +"\n" + "n="+ n +"\n"+"p="+p)	  
   var itemPrice= new Array ( )  //numbers are $ea
   itemPrice[ 0 ] = 0.00 ;
   itemPrice[ 1 ] = 3.07 ;
   itemPrice[ 2 ] = 4.49 ;
   itemPrice[ 3 ] = 5.94 ;
   itemPrice[ 4 ] = 8.59 ;
     
   var  itemSKU= new Array ( ) ; //sku's are a continuation of ..cpt numbers.				   
    itemSKU[ 1] ="H0007";
    itemSKU[ 2] ="H0008";
    itemSKU[ 3] ="H0009";
    itemSKU[ 4] ="H0010";
	
var itemSmallImages= new Array(
'images/kjcologo8463.jpg',			<!-- 0 to 4-->
'images/tBlocks/tBlkLarge.jpg',
'images/tBlocks/tBlkLarge.jpg',
'images/tBlocks/tBlkLarge.jpg',
'images/tBlocks/tBlkLarge.jpg'
)
		d.Imgentryf1L1.src= itemSmallImages[n];
        selectedPrice = itemPrice[n]
      			selectedSKU =  "N".concat(itemSKU[n])
			//alert("selectedSKU = "+selectedSKU )
	    Item = d.entryf3.selectItemHvy.options[n].text
	    itemSet = 1
checkInputs()
}


