function show_hot_widget() { document.write("

Best seller!
\"Safe
Safe Space
"); } function show_new_widget() { document.write("

New!
\"The
The Witch Cat Inn
"); } function show_any_widget() { var randomnumber=Math.floor(Math.random()*2) switch(randomnumber) { case 0: show_hot_widget(); break; case 1: show_new_widget(); break; } }