
function selJump(type,obj){
	var dir = "http://admin.zhnews.net/art/art/web/";
	//var dir = "http://localhost/1/zhnews/art/";
	var id = obj.options[obj.selectedIndex].value; 
	//alert(type+" | "+obj+" | "+id);
	if(type == "show"){
		window.location.href = dir+"movie-detail.php?id="+id;
	}else if(type == "art"){
		window.location.href = dir+"art-detail.php?id="+id;
	}else if(type == "museum"){
		window.location.href = dir+"museum-detail.php?id="+id;
	}	
}