function randomText(low, high) { return Math.floor(Math.random() * (1 + high - low) + low) } function msgText() { var msg = "" var pick = randomText(1, 1) if(pick==1){ msg = msg.concat("

Welcome to OANDA

", "

OANDA, The Currency Site

is the advanced and

", "

comprehensive provider of foreign exchange, currency

", "

trading, and information services to

", "

forex traders, businesses and travelers.

") } document.write(msg) } msgText()