function start_movies(nr, width, height){
  var def1 = '<object width="'+width+'" height="'+height+'"><param name="movie" value="../design/swf/star_1.swf"><param name="WMode" value="Transparent"></param><param name="play" value="false" /><embed src="../design/swf/star_1.swf" width="30" height="40" wmode="transparent" play="false"></embed></object>';
  var thename = 'st_'+nr;
  document.getElementById(thename).innerHTML = def1;
  
}



function pausecomp(millis)
{
var date = new Date();
var curDate = null;

do { curDate = new Date(); }
while(curDate-date < millis);
} 

function myFunction(){
  
   setTimeout(function(){start_movies('1', '15', '20');}, 5000);
   setTimeout(function(){start_movies('2', '30', '40');}, 500);
   setTimeout(function(){start_movies('3', '30', '40');}, 2000);
   setTimeout(function(){start_movies('4', '30', '40');}, 3000);
   setTimeout(function(){start_movies('5', '30', '40');}, 10);
}

myFunction();