
function selectGo2(obj,openWin){
	
	var Ind 	= obj.selectedIndex;
	var Value 	= obj.options[Ind].value;
	
	targetLink = Value.indexOf("http");
	
	if (Value){
		if (targetLink>=0){
			if (openWin == 0 || Value=='http://www.vejatudo.com/') {
newWin=window.open(Value);
			} else {
document.location.href = Value;
			}
		} else if (targetLink==-1) {
			document.location.href = Value;
		}	
	}
}