<!--
function randomlink()
{
var a=Math.round(Math.random()*9);
title = new Array();
title[0]="guest01.htm";
title[1]="guest02.htm";
title[2]="guest03.htm";
title[3]="guest04.htm";
title[4]="guest05.htm";
title[5]="guest06.htm";
title[6]="guest07.htm";
title[7]="guest08.htm";
title[8]="guest09.htm";
title[9]="guest10.htm";
link=eval("title["+a+"]");
window.open(link,"","width=350,height=320,resizable=no");
}
//-->