function DisplayCartoons(nRatio) {
	nWidth=617;
	nHeight=470;
	if (!nRatio || nRatio==0) {
		nRatio=100;
	}

	nWidth=nWidth*(nRatio/100);
	nHeight=nHeight*(nRatio/100);
			
	sOutput=""
	sOutput=sOutput+"<table border=0 cellspacing=0 cellpadding=0>"
	sOutput=sOutput+"<tr valign=bottom align=center>"
	sOutput=sOutput+"<td colspan=3><img name='slide' width='" + nWidth + "' height='" + nHeight + "' border=0 hspace=0 vspace=0 alt='slideshow' src='http://www.theFinancials.com/images/humor/slide1.jpg'></td>"
	sOutput=sOutput+"</tr>"
	sOutput=sOutput+"<tr>"
	sOutput=sOutput+"<td height=5 colspan=3> </td>"
	sOutput=sOutput+"</tr>"
	sOutput=sOutput+"<tr>"
	sOutput=sOutput+"<td height=5 align=left><a href='javascript:prevSlide()'><img src='http://www.theFinancials.com/images/humor/button_previous.gif' width='20' height='20' alt='Previous' border='0'></a></td>"
	sOutput=sOutput+"<td height=5 align=left>"
	sOutput=sOutput+"<p align='center'><b>&nbsp;Use buttons to scroll through images&nbsp;</b></td>"
	sOutput=sOutput+"<td height=5 align=right><a href='javascript:nextSlide()'><img src='http://www.theFinancials.com/images/humor/button_next.gif' width='20' height='20' alt='Next' border='0'></a></td>"
	sOutput=sOutput+"</tr>"
	sOutput=sOutput+"</table>"
	return sOutput
}
