var LAjax = {
  LIzdelki: function(url, data) {
	   var aj = new Ajax.Request(url, {method:'get',parameters: data, onComplete: LAjax.LIzdelkiResolve });
  },
  LIzdelkiResolve: function(oReq) {
	  /*var f2 = new Function("nList.Add('map1', 'map2', 'map3', 'fi,le', 'ident', 'barva', 'stevilo', 'ostalo');nList.Add('map1', 'map2', 'map3', 'file', 'ident22', 'barva', 'stevilo', 'ostalo');");
	  f2();*/
	  
	  var tmp = oReq.responseText.split("\x12");
	  for(x=0; x<tmp.length;x++) {
	    var f1 = new Function(tmp[x]);
	    f1();
	  }
	  setTimeout("$('flash_rek').style.visibility='hidden';", 10000);
	  Load_run.showWindow('hidden');
  }
}

var Load_run = {
  showWindow: function(vis) {
    var GPS = objSize.getPageSize();
	
	var s1,s2;
	s1 = GPS.windowWidth/2;  s1-=50;
	s2 = GPS.windowHeight/2; s2-=50;
	var scrLoad = "<div id='BigLoad' style='top:"+s2+"px;left:"+s1+"px;position:absolute;'>"+
				  //"<p style='color:#3d8aea;margin:20px 20px 20px 20px;'>Prosimo pocakajte...</p>"+
				  "<img src='http://www.sm-s.si/BigLoad.gif'/>"+
				  "</div>"; 
				  
    var idNar              = $('izdelki');
    idNar.style.width      = GPS.windowWidth+'px';
    idNar.style.height     = GPS.windowHeight+'px';
		
    idNar.style.background ='#000000';
    idNar.style.position   = "absolute";
    idNar.style.top        = '0px';
    idNar.innerHTML        = scrLoad;
	
	idNar.style.visibility =vis;
  },
  
  Izdelki: function() {
    LAjax.LIzdelki('sm-code/loading_ajax.php', '?LIzdelki=lalala');
  }
}
