function gourl(){
	var url = $(this).val();
	if(url!=""){
		document.location.href = url;
	}
}
$(document).ready(function (){
	$(".topbiaodan").change(gourl);	
							 });


