
        function changequote(nr,type)
		{
			var br=this.document;
			var quote = new Array();
			var author = new Array();
			var linku = new Array();
            
quote[0] = "Sincerity is like traveling on a plain, beaten road, which commonly brings a man sooner to his journey's end than by-ways, in which men often lose themselves.";
author[0] = "Nancy Astor";
linku[0] = "http://www.focusdep.com/quotes/Nancy/Astor";
quote[1] = "The chief difference between words and deeds is that words are always intended for men for their approbation, but deeds can be done only for God.";
author[1] = "Michael Jordan";
linku[1] = "http://www.focusdep.com/quotes/Michael/Jordan";
quote[2] = "If organized religion is the opium of the masses, then disorganized religion is the marijuana of the lunatic fringe.";
author[2] = "Matthew Arnold";
linku[2] = "http://www.focusdep.com/quotes/Matthew/Arnold";
quote[3] = "The reputation of a man is like his shadow, gigantic when it precedes him, and pigmy in its proportions when it follows.";
author[3] = "Lady Bird Johnson";
linku[3] = "http://www.focusdep.com/quotes/Lady_Bird/Johnson";
quote[4] = "Drugs and cocaine, you cheat yourself more than you cheat other people, you deprive yourself from being the best you can be.";
author[4] = "Lyle Alzado";
linku[4] = "http://www.focusdep.com/quotes/Lyle/Alzado";
		    if(type==0)
		    	br.writeln('<div id ="focusdep">');
			if(nr==4)
				next=0;
				else
				next=nr+1;
			if(nr==0)
				prev=4;
				else
				prev=nr-1;
			document.all.focusdep.innerHTML = '<b>QOD:</b> '
		    +quote[nr]+'<br><a href = "'+linku[nr]+'">'+author[nr]+'</a> <a href ="#" onClick = "javascript:changequote('+next+',1)" ><<</a> <a href ="#" onClick = "javascript:changequote('+next+',1)" > >></a>';

			if(type==0)
				br.writeln('</div>');

		}
		changequote(1,0);
        