function showDiv(athis,theForm) {
    theForm.submit();    
}

function setEditPromotionData(promotionName, promotionType, validPromotion, theForm) {
    theForm.promotionName.value = promotionName;
    theForm.promotionType.value = promotionType;
    theForm.validPromotion.value = validPromotion;
}

function setEditContainerData(containerName, containerType, theForm) {
    theForm.containerName.value = containerName;
    theForm.containerType.value = containerType;
}

function setFreeTrialId(freeTrialId, theForm) {
    theForm.freeTrialId.value = freeTrialId;
}

function setEditAdvertisementData(bannerName, ownerURL, theForm) {
    theForm.bannerName.value = bannerName;
    theForm.ownerURL.value = ownerURL;
   
}

function setConfigureContainerData(containerType, theForm) {
//alert(containerType)
    theForm.containerType.value = containerType;
}
    
function setConfigureItemData(itemType, theForm) {
    theForm.itemType.value = itemType;
}
function setContainerName(aThis, theForm) {
    theForm.containerName.value = aThis.value;
}