
// Region select funtion to open url in new window unless drop down value is null
function openInNewWindow(url) {
	
	if(url == "index.php"){

		location.href(url);
		
	}else if(url != "null"){

		var newWindow = window.open(url, '_blank');
		newWindow.focus();

	}
	return false;
	
}

function openLocation(url) {
	
	if(url == "http://www.visionbiomed.com/"){

		
		var newWindow = window.open(url, '_blank');
		newWindow.focus();		

		
	}else if(url != "null"){

		location.replace(url);

	}
	return false;
	
}