// 查看资料的具体信息的统一窗口
function open_data_detail(url)
{
	//方案一： 在当前窗口查看详细信息
	//document.location.href = url;
	
	//方案二：在新窗口中查看详细信息
	var xMax;
	var yMax;
	if (document.all)
		xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
		xMax = window.outerWidth, yMax = window.outerHeight;
		else
		xMax = 640, yMax=480;
	var xOffset = (xMax - 580)/2;
	var yOffset = (yMax - 460)/2;	
	//WindowFeature="height=230, width=360, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=no";
	WindowFeature="height=460, width=580, top=" + yOffset + ", left=" + xOffset + ", toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=no";
	window.open(url,"",WindowFeature);	
}

