|  | 
                    
                      | 
¿¹Á¦1 - »õâ¿¡ ±Û ½á ³Ö±â»õâ¿¡ ¸¶À½µ¥·Î ±ÛÀ» ½á³Ö¾î º¾½Ã´Ù.
 function ex1(){
 var neWin=null
 neWin=window.open('','','status=yes,toolbar=yes,scrollbars=yes,menubar=yes')
 neWin.moveTo((screen.width-600)/2,(screen.height-600)/2) 
¡æ 
âÀ» È¸é °¡¿îµ¥·Î ¶Ù¿ì±â À§ÇÑ ¸í·É
 neWin.resizeTo(600,600)
 neWin.document.write('¾È³çÇϼ¼¿ë? ^_________________________^') 
¡æ 
document.write¸¦ ÀÌ¿ëÇÏ¿© ±ÛÀ» ¾¹´Ï´Ù.
 }
 
 
âÀ» È¸é °¡¿îµ¥·Î ¶Ù¿ì´Â °ø½Ä : moveTo((screen.width-â³Êºñ)/2,(screen.height-â³ôÀÌ)/2)¿¹) moveTo((screen.width-400)/2,(screen.height-300)/2)
  
 
¿¹Á¦2 - ¸¸¾à âÀÌ ¶° ÀÖÀ» ¶§ ¶Ç ¶Ù¿ì¸é ÀÌÀü¿¡ ÀÖ´ø âÀ» ´Ý°í »õ⿱â..(Çä º¹Àâ)âÀÌ ¿©·¯°³ ¸¹ÀÌ ¶ß´Â °Í ¸·´Â ¹ý ÀÔ´Ï´Ù.
 var windo=null 
¡æ 
â À̸§À» ÇÔ¼ö¹Û¿¡ Á¤ÀÇÇØ ÁÝ´Ï´Ù.
 function ex3(){
 if(windo)windo.close() 
¡æ 
âÀÌ ¿·Á ÀÖ´ÂÁö üũÇÏ¿© ¿·Á ÀÖÀ¸¸é ´Ý´Â ¸í·ÉÀÔ´Ï´Ù.
 windo=window.open('','','status=yes,toolbar=yes,scrollbars=yes,menubar=yes')
 windo.moveTo((screen.width-200)/2,(screen.height-200)/2)
 windo.resizeTo(200,200)
 }
 
 
 
 
 
 
 |  
 |  |