
function popWin(url,name,w,h,scrol,loc,stat,resiz,xOffset,yOffset) {
newWin=window.open(url,name,"width="+ w + ",height=" + h + ",scrollbars=" + scrol + ",location=" + loc + ",status=" + stat + ",resizable=" + resiz + ",top=150 ,left=150");
 }


var count=0;
var scrollcount = 0;
var scrollspeed = 20;
var delay = 1;
var message="Avitar Associates of New England   ";
	
function myscroll() 
	{
		window.status = message.substring (count, message.length) + message.substring(0,count);
		if (++scrollcount > scrollspeed) {
				if (++count > message.length) count=0;
			scrollcount = 0;
			}
	setTimeout("myscroll()", delay);

	}


