function draw_destacados(s_id_div, s_code, s_lugar, s_lang, s_pais_busqueda, s_formato, pn_height, pn_width) 
{
  
  var s_url = $("#DOMAIN_DESTACADOS_SERVICE").val();
  var s_version = Math.floor(Math.random()*100);

  var n_height = "120";
  var n_width = "780";

  if (pn_height != null && pn_height != "0")
  {
  	n_height = pn_height;
  }//if


  if (pn_width != null && pn_width != "0")
  {
    n_width = pn_width;
  }//if
  
  
  s_url = s_url + "?s_mode=draw"+ "&s_code="+ s_code+ "&s_lugar="+ s_lugar+ 
     "&lang=" + s_lang+
     "&v="+ s_version+
     "&id_pais_busqueda="+ s_pais_busqueda+
     "&s_formato="+ s_formato;

    var s_html = "<iframe src='"+ s_url+ "' border='0' "+ 
    " style='width:"+ n_width+ "px;border:1px;height:"+ n_height+"px;'" +
    " allowtransparency='true'  frameborder='0' scrolling='no' rel='nofollow'>"+
    " </iframe>";
    
    
    var s_id_div = "recomendados";
    document.getElementById(s_id_div).innerHTML = s_html;
    
    //$("#"+ s_id_div).html(s_html);
    
    
    $("#contenido_destacados").css("display", "block");
    
}//fun


//---- PROGRAM ----
$(document).ready(function()
{
	
	//draw_destacados('');
});

