var ar = new Array(
"Do you own income producing<BR>real estate in Texas?",
"In the market for a new<BR>real estate property manager?");

var num = Math.floor(Math.random() * ar.length);
document.write(ar[num]);


