function formHandler(form){
var URL = document.form.artist.options[document.form.artist.selectedIndex].value;
window.location.href = URL;
}

function popup(url)
{
		window.open( url ,"_blank","resizable,scrollbars=no,height=500,width=650,left=1,top=1");
}
