function s1(a,b,c) {
  text = "<object codebase=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\" height=\"" + b + "\" width=\"" + c + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\">\r\n";
  text+= "<param value=\"http://www.promco.net/site/img/" + a + ".swf\" name=\"movie\" />\r\n";
  text+="<param value=\"true\" name=\"play\" />\r\n";
  text+="<param value=\"true\" name=\"loop\" />\r\n";
  text+="<param value=\"transparent\" name=\"wmode\" />\r\n";
  text+="<param value=\"high\" name=\"quality\" />\r\n";
  text+="<param value=\"BASE=http://www.promco.net/\" name=\"flashvars\" />\r\n";
  text+="</object>\r\n";
  
  document.write(text);
  return true;

}