Scratch what I just said. I went back and looked, your tables are definetly out of sync.
This is wrong:
	Quote:
	
	
		
			
					<tr>	 
		<td align=center><img src="teenymania/tm_hpa_02.jpg"><br><font size=+2>Teeny Mania gives you over 100,000 teen hardcore pics & 150,000 teen fuck vidoes!</font>  
		</td> 
	</tr> 
 
<center> 
<! --------------- Recip table -------------------------!> 
<table border="0" bordercolor=#0000E6 bgcolor=#0099ff width="600"> 
			
		 | 
	
	
 I think your missing the closing </table> tag. 
A little tip for centering your tables so you can do away with all the <center> tags.
	Quote:
	
	
		
			
				<table width="600" cellspacing="0" cellpadding="0" border="0" align="center"> 
<tr> 
<td> 
</td> 
</tr> 
</table> 
 
or 
 
<html> 
<head> 
</head> 
<body> 
<div align=center> 
 
<table width="600" cellspacing="0" cellpadding="0" border="0"> 
<tr> 
<td> 
</td> 
</tr> 
</table> 
 
</div> 
</body> 
</html>
			
		 | 
	
	
 To fix your problem, go back and check all your table, tr and td tags and make sure they all have closing tags in the right spots.
-