home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2002 November / MICD_2002_11.iso / Www / HalfLife / cs.halflife.pl / js / scrshot-cs.js < prev   
Text File  |  2002-09-03  |  2KB  |  66 lines

  1. function bigShot(tytul,imgSrc,imgDesc,rozmiar) {
  2.  
  3.   if (rozmiar == 0) {
  4.      wWidth  = screen.availWidth;
  5.      wHeight = screen.availHeight;
  6.      wTop    = 0;
  7.      wLeft   = 0;
  8.   } else if (rozmiar > 0) {
  9.      if (rozmiar == 1) { faktor = 0.9 }
  10.      if (rozmiar == 2) { faktor = 0.6 }
  11.      if (rozmiar == 3) { faktor = 0.4 }
  12.  
  13.      wWidth  = screen.availWidth * faktor;
  14.      wHeight = screen.availHeight * faktor;
  15.      wTop    = (screen.availHeight - wHeight)/2;
  16.      wLeft   = (screen.availWidth - wWidth)/2;
  17.   }
  18.  
  19.   iswnd = window.open('','','toolbar=no,scrollbars=yes,resizable=yes,status=no,location=no,directories=no,width='+wWidth+',height='+wHeight+',menubar=no,left='+wLeft+',top='+wTop);
  20.  
  21.   iswnd.document.writeln("<HEAD><TITLE>"+tytul+"</TITLE>");
  22.   iswnd.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-2'>")
  23.   iswnd.document.writeln("<LINK REL='stylesheet' TYPE='text/css' HREF='/css/std.css'>");
  24.   iswnd.document.writeln("</HEAD>");
  25.  
  26.   iswnd.document.writeln("<BODY BACKGROUND='/img/bkg/cs_bkg2.jpg'>");
  27.   iswnd.document.writeln("<TABLE WIDTH='100%' CELLSPACING='0' CELLPADDING='0'>");
  28.  
  29.   iswnd.document.writeln("<TR><TD>");
  30.   iswnd.document.writeln("<img src='" + imgSrc + "' border='1'>");
  31.  
  32.   if (imgDesc != '') {
  33.  
  34.       iswnd.document.writeln("<p>" + imgDesc + "</p>");
  35.   }
  36.   
  37.   iswnd.document.writeln("</TD></TR>");
  38.  
  39.   iswnd.document.writeln("</TABLE>");
  40.   iswnd.document.writeln("</BODY>");
  41.  
  42.   return;
  43. }
  44.  
  45. function wndShot(href,rozmiar) {
  46.  
  47.   if (rozmiar == 0) {
  48.      wWidth  = screen.availWidth;
  49.      wHeight = screen.availHeight;
  50.      wTop    = 0;
  51.      wLeft   = 0;
  52.   } else if (rozmiar > 0) {
  53.      if (rozmiar == 1) { faktor = 0.8 }
  54.      if (rozmiar == 2) { faktor = 0.6 }
  55.      if (rozmiar == 3) { faktor = 0.4 }
  56.  
  57.      wWidth  = screen.availWidth * faktor;
  58.      wHeight = screen.availHeight * faktor;
  59.      wTop    = (screen.availHeight - wHeight)/2;
  60.      wLeft   = (screen.availWidth - wWidth)/2;
  61.   }
  62.  
  63.   window.open(href,'','toolbar=no,scrollbars=yes,resizable=yes,status=no,location=no,directories=no,width='+wWidth+',height='+wHeight+',menubar=no,left='+wLeft+',top='+wTop);
  64.  
  65. }
  66.