

function GetPDN(me){

  var firstFour, secondTwo, thirdFour, fourthTwo

  

  firstFour = me.form.style.value

  fourthTwo = me.form.Size.options[me.form.Size.selectedIndex].value

   

  if(fourthTwo == "00"){

    secondTwo = "30"

    thirdFour = "0033"

  }

  else {

    secondTwo = "29"

    thirdFour = "0000"

  }

  

  me.form.PDN.value= firstFour+"-"+secondTwo+"-"+thirdFour+"-"+fourthTwo

}



function GetAccessoryPDN(me){

  var firstFour, secondTwo, thirdFour, fourthTwo

  

  firstFour = "0645"

  secondTwo = "00"

  fourthTwo = "00"

  thirdFour = me.form.Size.options[me.form.Size.selectedIndex].value

   

  me.form.PDN.value= firstFour+"-"+secondTwo+"-"+thirdFour+"-"+fourthTwo

}
