/* external file "projubcparam.js" begins */
// begin: Belt Conveyer's Parameters
//========================
//Single or More than one message may reside within scrolling
//area while pausing: 0 - Single;  1 - More: as many as they fit in; 
var bmsgnr=0;

//If chosen bmsgnr=1, the CSS format must have "text-align:left".
//A 20px wide blank space is automatically inserted after every
//message. Each one will pause when reaching the left edge.
//If chosen bmsgnr=0, recommended CSS is "text-align:center",
//then any message shorter than conveyer width will be centered.
//When larger than conveyer width, automatically a 20px wide
//blank space is inserted after any such message.
//In any case, if no blank space desired set below value 1:
var blanspa=0;

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

//width of the Conveyer in pixels: set to your own; 
//you may set the width as large as you'd like; 
var bwidth=370; 

//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=232; 

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

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

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

//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;

//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 
