function jump(targ,selObj,restore){ //v3.0
	if (selObj.options[selObj.selectedIndex].value!=""){
		url="http://www.recordstore.co.uk/theend";
		if (selObj.options[selObj.selectedIndex].value==url) {
			window.open(url,'newwindow');
	  } else {
		  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  }
	}
	if (restore) selObj.selectedIndex=0;
}

function openwindow(mypage,myname,w,h) {
	LeftPosition = (screen.width-w)/2; 
	TopPosition = (screen.height-h)/2; 
	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
	window.open(mypage,myname,settings);
}