js 팝 업 창 가운데

js 팝 업 창 가운데
<script type="text/javascript">
/*
      
*/
function openwindow(url,name,iWidth,iHeight)
{
    var url;                             //       ;
    var name;                            //    ,   ;
    var iWidth;                          //       ;
    var iHeight;                         //       ;
    //         
    var iTop = (window.screen.availHeight-30-iHeight)/2;       
    //         
    var iLeft = (window.screen.availWidth-10-iWidth)/2;          
    window.open(url,name,'height='+iHeight+',,innerHeight='+iHeight+',width='+iWidth+',innerWidth='+iWidth+',top='+iTop+',left='+iLeft+',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no');
}
</script>

<a href="javascript:void(0)" onclick="openwindow('http://www.baidu.com','baidu',400,400)">openwindow</a>
 

좋은 웹페이지 즐겨찾기