/**
 * implemen getBannerDescription()
 */
function getBannerDiscription(selectedIndex) {
  //alert(selectedValue);
  var db_type = Array();
  db_type[0] = "";
  db_type[1] = "Display a full banner ad in home page." + 
    "<br />Dimension : 960 x 410";
  db_type[2] = "Display ads slot in footer of every page." + 
    "<br />Dimension : 175 x 90";
  db_type[3] = "Display ads bar in side bar of every inner page." + 
    "<br />Dimension : 120 x 100";
    
  jQuery("#ads-type-wrapper").html(db_type[selectedIndex]);
}

/**
 * implements ajax_banner_ads_form_submit_click()
 */  
function ajax_banner_ads_form_submit_click(frm) {
  
}

/**
 * implements ajax_banner_ads_form_onSubmit()
 */
function ajax_banner_ads_form_onsubmit() {
  //alert('bad submit');
  return false;
}
;

