(function(){ function fill(id,pos){ var el=document.getElementById(id); if(!el) return; var xhr=new XMLHttpRequest(); xhr.open('GET','/?_asddas='+pos,true); xhr.setRequestHeader('X-Requested-With','XMLHttpRequest'); xhr.onload=function(){ if(xhr.status===200 && xhr.responseText){ el.innerHTML=xhr.responseText; } }; xhr.send(); } function prepend(id,pos){ var el=document.getElementById(id); if(!el) return; var xhr=new XMLHttpRequest(); xhr.open('GET','/?_asddas='+pos,true); xhr.setRequestHeader('X-Requested-With','XMLHttpRequest'); xhr.onload=function(){ if(xhr.status===200 && xhr.responseText){ var tmp=document.createElement('div'); tmp.innerHTML=xhr.responseText; var first=el.firstChild; while(tmp.firstChild){ el.insertBefore(tmp.firstChild,first); } } }; xhr.send(); } fill('hf-asddas','banner_top'); fill('player-banner','banner_top'); fill('tb-asddas','icon_grid'); fill('text-asddas','text_links'); fill('floatright','float_right'); fill('floatleft','float_left'); fill('floatbottom-container','float_bottom'); prepend('video-list','video_recommend'); })();