var idPricesLic  = 'id_prices_lic';
var idWayImg     = 'id_wayimg';
var idPrice      = 'id_price';
var idRmWay      = 'id_rm_way';
var idLic1       = "id_lic1";// RF Standard, RM Standard
var idLic2       = "id_lic2";// RF Extended, RM Exclusive
//var idLicName    = "id_lic_name";

var size1 = 0, way1 = null;

var lic1,prices1;  // init
var lic_type1 = 0; // Standard default


function downl_init(lic,prices)
{ lic1 = lic; prices1 = prices; //size1 = size;
  if(lic1 == 0) // RF
  { var divPrice = document.getElementById(idPrice);
    divPrice.innerHTML = " $" + prices1[lic_type1][size1];
  }
}

// onclick RM Standard
function flic1()
{ //document.write('');
  //alert("1");
  lic_type1 = 0;
  var divPrice = document.getElementById(idPrice);

  //var licName  = document.getElementById(idLicName);
  if(lic1 == 1) // RM
  { var ahref1  = document.getElementById(idPricesLic);
    ahref1.href = "prices_lic.php";
    ahref1.innerHTML = "For details see Prices &amp; Licenses";

    var divWay = document.getElementById(idWayImg);
    divWay.style.display = 'block';

    if((size1 != null) && (way1 != null))
    divPrice.innerHTML = " $" + prices1[way1][size1];
  }else
  if(lic1 == 0) // RF
  { if(size1 != null) divPrice.innerHTML = " $" + prices1[lic_type1][size1];
  }
}
// onclick RM Exclusive
function flic2()
{ //document.write('');
  //alert("2");
  lic_type1 = 1;
  var divPrice = document.getElementById(idPrice);

  //var licName  = document.getElementById(idLicName);
  if(lic1 == 1) // RM
  { var ahref1  = document.getElementById(idPricesLic);
    ahref1.href = "#";
    ahref1.innerHTML = "Send offering with<br>your price on imagellaphotos@gmail.com";

    var divWay = document.getElementById(idWayImg);
    divWay.style.display = 'none';

    divPrice.innerHTML = "";
  }else
  if(lic1 == 0) // RF
  { if(size1 != null) divPrice.innerHTML = " $" + prices1[lic_type1][size1];
  }
}


function fsize(size)
{ //var licName  = document.getElementById(idLicName);
  var inpLic1  = document.getElementById(idLic1);
  var inpLic2  = document.getElementById(idLic2);

  var divPrice = document.getElementById(idPrice);//.innerHTML
  size1 = size;

  if(lic1 == 1) // RM
  { if((way1 != null)&&(lic_type1==0)) divPrice.innerHTML = " $" + prices1[way1][size1];
    else             divPrice.innerHTML = "";
  }else
  if(lic1 == 0) // RF
  { if(inpLic1.checked) divPrice.innerHTML = " $" + prices1[lic_type1][size1];
    if(inpLic2.checked) divPrice.innerHTML = " $" + prices1[lic_type1][size1];

  }

}
function fway()
{ //alert(document.getElementById(idRmWay).value);
  var divPrice = document.getElementById(idPrice);
  way1 = document.getElementById(idRmWay).value;
  if(way1 < 0) way1 = null;

  if((size1 != null) && (way1 != null))
   divPrice.innerHTML = " $" + prices1[way1][size1];
  else
   divPrice.innerHTML = "";
}




//alert('download script');


