function JumpMenu(sel)
	{
	Redirect(sel.options[sel.selectedIndex].value);
	}

function Redirect(url)
	{
	var loc, qs, qsCrumbs, nameval;
	
	if(!(document.all && !window.opera && window.print))
		{
		location = url;
		}
	else //IE 5.x + windows only
		{
		var body = document.getElementsByTagName('body')[0];
		var form = document.createElement('form');
		
		if(url.indexOf('?') > 0)
			{
			var s = url.split('?');
			loc = s[0];
			qs = s[1];
			}
		else
			{
			loc = url;
			qs = '';
			}
		
		form.action = loc;
		form.method = 'get';
		form.style.display = 'none';
	
    	if (qs != '')
			{
			qsCrumbs = qs.split('&');
			
			for(var i = 0; i < qsCrumbs.length; i++)
				{
				nameval = qsCrumbs[i].split('=');
				var input = document.createElement('input');
				input.style.display = 'none';
				input.name = nameval[0];
				input.value = unescape(nameval[1]);
				form.appendChild(input);
				}
			}
		
		body.appendChild(form);
		form.submit();
		}
	}