function sfGoToURL(ids, inNewWin){ 
	
	var targetUrl = document.getElementById(ids).options[document.getElementById(ids).selectedIndex].value; 
	if(inNewWin){ 
	    window.open(targetUrl); 
	}else{
		document.location.href = targetUrl; 
	} 
	
}