var d=document;

function openWin(memberFile, winWidth, winHeight){
	myURL = 'display.htm?' + memberFile;
	window.open(myURL,"Member",'toolbar=0,width=' + winWidth + ',height=' + winHeight + ',status=0,scrollbars=0,resizable=0,menubar=0');
}

// sub navigation from drop down list #1
function go1(){
if (d.selecter1.ARTISTS.options[d.selecter1.ARTISTS.selectedIndex].value != "NONE") {
location = d.selecter1.ARTISTS.options[d.selecter1.ARTISTS.selectedIndex].value
		}
}

// sub navigation from drop down list #2
function go2(){
if (d.selecter1.CATALOGUES.options[d.selecter1.CATALOGUES.selectedIndex].value != "NONE") {
location = d.selecter1.CATALOGUES.options[d.selecter1.CATALOGUES.selectedIndex].value
		}
}

// sub navigation from drop down list #3
function go3(){
if (d.selecter1.MAGAZINES.options[d.selecter1.MAGAZINES.selectedIndex].value != "NONE") {
location = d.selecter1.MAGAZINES.options[d.selecter1.MAGAZINES.selectedIndex].value
		}
}