{

	var mywin;
	
	function jump()
	{
	//alert(document.jumpform.jumpyear.value);
		var URL;
		//if(document.jumpform)
		//{
			if(document.forms.jumpform.jumpyear.value!="")
			{
				URL=document.forms.jumpform.jumpyear.value+".htm";
				document.location.href=URL;
			}
		//}
	}
	
	function jumplist(cyear)
	{
		//list all award years from 1984 

		var i;
		var currentyear=2009;	//manually set because the award dates are unset

		//current year
		document.writeln("<option value='artist_winners'>"+currentyear+"</option>");
		for(i=currentyear-1;i>=1984;i--)
		{
			//no awards in 1988
			//if(i!=1988)
			//{
				document.writeln("<option");
				if(cyear==i)
				{
					document.writeln(" selected");
				}
				document.writeln(" value='winners_"+i+"'>"+i+"</option>");
			//}
		}
	}
	
	function showpic(theURL) 
	{ //v2.0
		//alert("SS");
		mywin=window.open("viewpic.htm?"+theURL,"preview","width=311,height=200");
		//mywin=window.open(theURL,winName,features);
		mywin.focus();
	}

	
}