<!--

//

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]="<font class=copyright_text>&copy; 2010 Huy's HomeTurf!!!@Home Media, Inc. Some rights reserved. Use of this site is subject to <a href=/legal_stuff/terms_of_use.html>Terms of Use</a>.</font>"


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//-->