	function go_link()
		{
			var oSel = document.forms["product"].link;
			var sURI = oSel.options[oSel.selectedIndex].value;
		if(sURI.indexOf('http://')<0)
			document.location.href = 'http://www.2digital.ru/' + sURI;
		else
			{
		window.open(sURI, 'webresource');
		oSel.selectedIndex = 0;
			}
		}
