function CalcMe(arg1) {
var aTTl=0, cTTl=0;
var thisform = document.getElementById(arg1);
if (parseInt(thisform.adultNo.value)>0 && parseInt(thisform.adultPrice.value )>0) {
aTTl = parseInt(thisform.adultNo.value) * parseInt(thisform.adultPrice.value);
}
if (parseInt(thisform.childNo.value)>0 && parseInt(thisform.childPrice.value)>0) {
cTTl = parseInt(thisform.childNo.value ) * parseInt(thisform.childPrice.value);
}
thisform.totalPrice.value = aTTl + cTTl;
}
