function popupWindow(linkLocation, winWidth, winHeight, type) {
if (type == "" || type == undefined) {
type = "popup";
}
var winLeft = (window.screen.width - winWidth) / 2;
var winTop = (window.screen.height - winHeight) / 3;
window.open(linkLocation, type, "width=" + winWidth + ",height=" + winHeight + ",left=" + winLeft + ",top=" + winTop + ",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no");
}
function openNewWindow( strUrl,winWidth,winHeight){
var winLeft = (window.screen.width - winWidth) / 2;
var winTop = (window.screen.height - winHeight) / 3;
window.open( strUrl,
"",
"width="+ winWidth + ","
+ "height="+winHeight + ","
+ "status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,left="+winLeft+",top="+winTop);
}
function goImport()
{
var url ='<%=request.getContextPath() %>/page/fuwu/gzjdaManage/gzjDAImport.jsp?cid=<%=request.getParameter("cid")%>';
openNewWindow(url,600,500);
//alert(url);
//popupWindow(url,600,500,'m')
//alert(url);
}