var pgs = ['/','/','/'];
function go(pgIndex) {
document.location = pgs[pgIndex];
return true;
}

function show(pgIndex) {
 if (pgIndex < 0 ) {
 window.status=''; }
 else {
 window.status = pgs[pgIndex]; }
 return true;
 }