pages=new Array()
//pages[1]="null1.html"
//pages[2]="null2.html"
//pages[3]="null3.html"

pages = [
["index3.html"],,
]

newPage= function (){return Math.floor(Math.random()*pages.length)}

function switch_page()
{
window.location.href=pages[newPage()]
}
