 var QtyArray = new Array();
 var PriceArray = new Array();

function payment(){
//parent.contentFrm.style.width='900px';

 for(i=1; i<=17; i++){
  QtyArray[i] = new String();
  PriceArray[i] = new String();

  QtyArray[i] = bodyFrm.document.getElementById('item'+i).value;
  PriceArray[i] =  bodyFrm.document.getElementById('Price'+i).value;

 }

 document.bodyFrm.location.href= "orderInfo.html";


}


function fillDetails(){

 if(QtyArray[17]){ 

 for(i=1;i<=17;i++){
 		if (parseInt(bodyFrm.document.getElementById('Price'+i).value)>0){
  bodyFrm.document.getElementById('item'+i).value = QtyArray[i] ;
  bodyFrm.document.getElementById('Price'+i).value = PriceArray[i] ;
 }
}
 sumALL();
 }

}




function sumALL(){
 var priceAll=0;
 for(i=1; i<=17; i++){ 	
 	if (parseInt(bodyFrm.document.getElementById('Price'+i).value)>0){
  priceAll +=  parseInt(bodyFrm.document.getElementById('Price'+i).value);
}
 }

 bodyFrm.document.getElementById('Total').value=priceAll;
}
