function redirect(value, url){
	if(value != "" | url != ""){
		window.location= url + value;
	}
}

