// JavaScript Document


function dispCdpChildAgeBoxes(numChild)
{
    // random children allowed for hotel and holiday booking
    var chdds = document.getElementById("cdpForm").getElementsByTagName("dd");
    totNum = chdds.length;	
	
    document.getElementById("ChildAgeRow").style.display = numChild > 0 ? "" : "none";
    for (i=1; i<=numChild; i++)
        document.getElementById("cdpRm1ChildAge" + i).style.display = "";
    for (; i<=totNum; i++)
        document.getElementById("cdpRm1ChildAge" + i).style.display = "none";
    
}


