/* change urls2 to urls3 etc when a new issue is added. Then in the function call in the webpage, change the number so it corresponds to the number used here. The last one in the array must always be the current issue ie foreplay/index.php */

var urls4 = new buildArray("",
"/foreplay/archive/issue_01.php",
"/foreplay/archive/issue_02.php",
"/foreplay/archive/issue_03.php",
"/foreplay/index.php" 
);

function goto (which, num, win)
{
	n = which.selectedIndex;
	if (n != 0)
	{
		var url = eval("urls" + num + "[n]")
		if (win)
		{
			openWindow(url);
		} else
		{
			location.href = url;
	}
	}
}

