links = Array(Array("Go to..."
,""
,""
)
,Array("Download"
,"http://vpchat.com/download"
,""
)
,Array("Avatars"
,"http://vpchat.com/avatars"
,1
)
,Array("Member Directory"
,"http://reg.vpchat.com/VP/members"
,""
)
,Array("Top 100 Chatters"
,"http://vpchat.com/top100"
,1
)
,Array("Top 100 Rooms"
,"http://vpchat.com/topRooms"
,1
)
);

function doDropdown(selObj) {
	gotoLink(selObj.selectedIndex);
}

function gotoLink(linkIndex) {
	link = links[linkIndex]
	href = link[1];
	if (!href) return;
	isPopup = link[2];
	if (isPopup) {
		var n = "SUB_WINDOW";
		var h = (navigator.appName == "Microsoft Internet Explorer") ? 440 : 480;
		var w = window.open(href, n, "toolbar,location,status,menubar,scrollbars,width=650,height="+h+",resizable");
		w.focus();
	} else {
		window.location = href;
	}
}


document.write('<select size="1" onChange="doDropdown(this)">');

for (x=0; x < links.length; ++x) {
	title = links[x][0];
	document.write("<option>" + title + "</option>");
}
	
document.write("</select>");
