// begin: Vertical Scroller's Parameters - 
//width of the Scroller in pixels: set to your own;
var mtwidth=690; 

//height of the Scroller in pixels: set to your own; 
//larger Messages (exceeding height) will slide OK anyway, 
// but the exceeding height won't show up on Recall!
var mtheight=15; 

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

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

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

//speed in pixels: the higher the faster - set your own!
var mtspeed=40; 

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

//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 etpause=20; 

//First message shows up at the top edge (or cell-centered) and pauses: 1
//First message shows up at the bottom edge and starts scrolling: 0
var utdopt=0;

//live speed-change option: 0 (not desired) or 1 (desired);
//vesclass would be the STYLE
//celcolor would be background color
var ltsopt = 0;
if(ltsopt==1)
{
	var vestclass='class=stileupdn';
	var celtcolor='#ccffcc';
}

//Recall Option: 
//set it 0 if not desired and the scroll will go on;
//set it 1 if desired: after a complete cycle the scroll stops
//and you may recall randomly any Message/Image;  
var rtcopt=0;
if(rtcopt==1)
{
	var cbttxt = new Array();
	//MUST BE as many TEXTs as the number of Messages/Images;
	//Set your own TEXTs, like Messages Title or what you have in there: 
	//cbtxt = ["1-TITLE", "2-Features", "3-Recall Option", "4-Other Possibilities", "5-Check"];
	cbttxt=[];
}
//end Parameters 
