// JavaScript Document
function setURL(choice,useRelPath)
{
	url=choice.options[choice.selectedIndex].value
	if (useRelPath == 1) {url=relpath+url};
	if(url.length) 
	window.location.href=url;
}