function redirect_to(url) {
	//window.location = 'http://'+url;
	if (url) {
		window.open('http://'+url);
	} else {
		return false;
	}
}
