//상세정보 flex 팝업열기 function goFlexPopDetail( url, varStr, varStrNum ){ var winw = (screen.width - 880) / 2; var winh = (screen.height - 622) / 2; var linkurl = url; if(varStr != "" ) linkurl = url + varStr + "="+varStrNum; var flexpop = window.open(linkurl, "flexpopup", "scrollbars=no, toolbar=no, location=no, resizable=no, status=no, menubar=no, width=880, height=622, left="+winw+", top="+winh); flexpop.focus(); /* var child = window.open("", "flexpopup", "scrollbars=no, toolbar=no, location=no, resizable=no, status=no, menubar=no, width=880, height=622, left="+winw+", top="+winh); // alert(document.getElementById("varStr").name); document.getElementById("varStr").name = varStr; document.getElementById("varStr").value = varStrNum; document.commFlexPopfrm.target="flexpopup"; document.commFlexPopfrm.method = "post"; document.commFlexPopfrm.action = url; document.commFlexPopfrm.submit(); */ }