function GoToURL(form) {
	var url = form.siteList.options[form.siteList.selectedIndex].value;
	if (url != '') {
		window.open(url, 'window2');
	}
	form.siteList.selectedIndex = 0;
}