/* external file "mybcparmsg.txt" begins */
// begin: Belt Conveyer's Parameters - 
//width of the Conveyer in pixels: set to your own; 
//Longer Messages (exceeding width) will slide OK anyway;
var bwidth=400; 

//height of the Conveyer in pixels: set to your own; 
//you may set the height for as many lines as you'd like; 
//"20" is more or less for one line!
var bheight=20; 

//BACKGROUND: either color(1) or image(2) ; 
//1.Background color: could be like: "#ffff00" or "yellow";
//set it "" for no background color;
var bbcolor="white";

//or 2.Background image: "imagename.ext";
//leave it "" for no image background;
var bbground="";

//border for sliding area: 1, ... ;
//set it 0(zero) for no border;
var bborder=0;

//speed in pixels: the higher the faster.
var bspeed=2; 

//pause between messages in milliseconds: 1000=1s; set to your own; 
var bpause = 2000; 

//speed for exceeding portions in milliseconds: 1000=1s; 
//the higher the slower: set to your own;
//"20" equals the speed to the main portion!
//leave it unchanged otherwise;
var fpause=20;

//First message shows up at the left edge (or centered) and pauses: 1
//First message shows up at the right edge and starts scrolling: 0
var rlopt=0;

//More than one message may reside within scrolling area
//while pausing: 0 (not desired) or 1 (desired); 
//Should one choose this option - value 1, automatically
//a blank space is inserted after each and every message;
var bmsgnr=0;

//msgclass will set the CSS format: .stilmsg for all messages;
//If chosen above bmsgnr=1 the CSS format must have "text-align:left";
//If chosen "text-align:center" and bmsgnr=0 above, shorter messages
//would be center-aligned - some exceptions on Opera Browser or MAC
//computers where some shorther messages won't yet be center-aligned
//See farther down "var macop" for MAC or Opera Browser users;
//Any message may have parameters like <font ... </font> ...;
var msgclass='class="stilmsg"';

//For MAC Computers Users and Opera Browser Users only:
//If chosen "text-align:center" and bmsgnr=0 above and IF NO single 
//message exceeds the Conveyer width and every message centered desired
//then set value 1 below, leave it unchanged otherwise - if chosen
//value 1 any exceeding message will be cut off to "bwidth" length:
var macop=0;

//LIVE speed-change option: 0 (not desired) or 1 (desired);
//besclass would be the STYLE
//belcolor would be background color for the area;
var bsopt = 0;
if(bsopt==1){
var besclass='class="stilefss"';
var belcolor='#ccffcc';
}
//end Parameters 

// begin: Belt Conveyer's Messages/Images - 
var sglm=new Array();

//Stand alone Images only - as many as you'd like;
//If no preloading desired go to Messages and fill in as usual:
//sglm[..]='<img src="image1name.ext" width="..." ... />'; ...
//If you want to preload them all when loading your page: 
//Remove all lines from: //Messages: ... up to ... //end Messages 
//Remove "//" from next 6 lines and set your images in first one;

//sglm=["image1name.ext", "image2name.ext", ...];
//var preloadname = new Array();
//for(pp=0;pp<sglm.length;pp++){
//preloadname[pp]=new Image();
//preloadname[pp].src=sglm[pp];
//sglm[pp]='<img src='+preloadname[pp].src+' />';}
//end stand alone Images 

//Messages: as many/few as you'd like: set to your own; 
//Every message MUST be set as a continuous string within '...';
//you may split it by using '+ at ends and then ' at continuations;
//Inside any message you MUST use \' in lieu of ' if need be!
//You may use as many "&+n+b+s+p+;" as you'd need to space 
//within messages - quotes and plus signs don't belong there! 
//Images used within a message - preload is recommended:
//preloadname = new Image();
//preloadname.src = "imagename.ext";
//sglm[..]='< ... ><img ... src='+preloadname.src+' /><...>';

for (i=0; i<scores.length; i++) {
  score=scores[i];
  score = score.replace("<br>", "&nbsp;&nbsp;");
  sglm[i] = score;
}

//sglm[0]='1. Supports any number of Messages'+
//' a <font color="red">lot larger than the Conveyer\'s width.</font>'+
//' You may slow the exceeding text\'s speed by increasing '+
//'<font color="#ffffcc">fpause</font>'+
//' if bmsgnr=0 (single)';
//sglm[1]='2. bmsgnr=0: Single message pauses within area';
//sglm[2]='3. Centered - if bmsgnr=0 & text-align:center';
//sglm[3]='<a  href="#" OnClick=\'javascript:void(secwin=window.open("http://hotdownloads.com/index.php3?job=3&id=52133","a_new","toolbar=no,menubar=no,scrollbars=yes,status=no,fullscreen=no,resizable=yes,width=600,height=500,top=0,left=0,screenX=0,screenY=0"));secwin.self.focus();\'>'+
//'4. Multiple Message Belt Conveyer</a>';
//sglm[4]='5. bmsgnr=1: Make sure you have text-align:left';
//sglm[5]='6. One more';
//sglm[6]='7. Another one';
//sglm[7]='8. Pauses every message.';
//    ...
//sglm[...]='...';
//end Messages 
/* end of external_remote file "mybcparmsg.txt" */
