<!--
var ctflag=0;

function scrollit(ctflag)
{
	document.getElementById('vintageGuide').scrollBottom+=ctflag;
	scrollit(ctflag+2);
	
/*	if (ctflag!=0)
	{
		setTimeout('scrollit()',2);
	}*/
}
 
 function scrollToBottom(){
if(document.getElementById){
t = document.getElementById('vintageGuide');
t.scrollTop = t.scrollHeight - t.style.height;
}
}