function _init(x) {
	if(document.all) {return 'document.all["'+x+'"]'}
	else if(document.getElementById) {return 'document.getElementById("'+x+'")'}
}
var top_count = 0;
var top_value = new Array();
var bot_count = 0;
var bot_value = new Array();
function toplink(_num, _title, _link, _lt) {
this.t_num = _num;
this.t_title = _title;
this.t_link = _link;
_lt==1 ? this.t_lt = ' target=new' : this.t_lt = '';
_num != 1 ? this.t_start = '&nbsp;&nbsp;|&nbsp;&nbsp;' : this.t_start = '';
this.show = toplink_show;
}
function toplink_show() {
document.write(this.t_start + '<a href="'+this.t_link+'" '+this.t_lt+'>'+this.t_title+'</a>');
}
