home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / internet / ukazky / 08xsoubory / fn_windows.js < prev    next >
Text File  |  2001-07-20  |  2KB  |  100 lines

  1. function NewWindow(mypage, myname, w, h, scroll)
  2. {
  3.     var winl = (screen.width - w) / 2;
  4.     var wint = (screen.height - h) / 2;
  5.     winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'
  6.     win = window.open(mypage, myname, winprops)
  7.     if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
  8.  
  9.     return win;
  10. }
  11.  
  12. function NewWindowNR(mypage, myname, w, h, scroll)
  13. {
  14.     var winl = (screen.width - w) / 2;
  15.     var wint = (screen.height - h) / 2;
  16.     winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'
  17.     win = window.open(mypage, myname, winprops)
  18.     if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
  19. }
  20.  
  21.  
  22. function win_image(width,height,title,path)
  23. {
  24.  
  25.     if (width < 800) w = width; else w = '800';
  26.     if (height < 600) h = height; else h = '600';
  27.  
  28.     var winl = (screen.width - w) / 2;
  29.     var wint = (screen.height - h) / 2;
  30.  
  31.     var scroll = '';
  32.  
  33.     param = 'path='+path+'&title='+title;
  34.  
  35.     if ((width >= 800) || (height >= 600)) scroll = 'yes'; else scroll = 'no';
  36.  
  37.  
  38.     winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'
  39.  
  40.     //alert(winprops);
  41.  
  42.     win = window.open('image.php?'+param, 'Image', winprops)
  43.     if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
  44.  
  45. }
  46.  
  47.  
  48. function win_note()
  49. {
  50.     var str = 'id_desc='+this.window.id_desc;
  51.     wnd = NewWindow('note_general.php?'+str, 'Note',510,330,'no');
  52.     wnd.creator = self;
  53. }
  54.  
  55. function win_wap()
  56. {
  57.     NewWindowNR("http://www.gelon.net/cgi-bin/wapalize.cgi?url=http://wap.cojeco.cz/index2.wml",'Gelon',200,436,'no');
  58. }
  59.  
  60.  
  61. function win_user()
  62. {
  63.     NewWindowNR("https://redakce.cjc.cz/add_user_anon.php?plat=1&step=1",'AddUser',640,400,'yes');
  64. }
  65.  
  66.  
  67. function win_addbanner(id)
  68. {
  69.     wnd = NewWindow("ad_addbannerscr.php?id_ad="+id,'AddBanner',510,200,'no');
  70.     wnd.creator = self;
  71. }
  72.  
  73. function win_buyc(id)
  74. {
  75.     wnd = NewWindow("ad_addbannerscr.php?buy=1&id_ad="+id,'AddBanner',510,200,'no');
  76.     wnd.creator = self;
  77. }
  78.  
  79. function win_help(id)
  80. {
  81.     NewWindowNR("help.php?faqn="+id,'Help',450,350,'yes');
  82. }
  83.  
  84. function win_faqadd()
  85. {
  86.     NewWindowNR("faq_add.php",'Thv',510,280,'no');
  87. }
  88.  
  89. function win_konfer()
  90. {
  91.     NewWindowNR("konfer.php",'Vhv',630,270,'no');
  92. }
  93.  
  94.  
  95. function MM_openBrWindow(theURL,winName,features)
  96. {
  97.   window.open(theURL,winName,features);
  98. }
  99.  
  100.