home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2002 November / MICD_2002_11.iso / Www / HalfLife / resub.halflife.pl / js / scrshot-resub.js < prev   
Text File  |  2002-09-03  |  2KB  |  68 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.      wWidth  = 640;
  16.      wHeight = 480;
  17.      wTop    = (screen.availHeight - wHeight)/2;
  18.      wLeft   = (screen.availWidth - wWidth)/2;
  19.   }
  20.  
  21.   iswnd = window.open('','','toolbar=no,scrollbars=no,resizable=yes,status=no,location=no,directories=no,width='+wWidth+',height='+wHeight+',menubar=no,left='+wLeft+',top='+wTop);
  22.  
  23.   iswnd.document.writeln("<HEAD><TITLE>"+tytul+"</TITLE>");
  24.   iswnd.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-2'>")
  25.   iswnd.document.writeln("<LINK REL='stylesheet' TYPE='text/css' HREF='/css/std.css'>");
  26.   iswnd.document.writeln("</HEAD>");
  27.  
  28.   iswnd.document.writeln("<BODY BGCOLOR='#005577' LEFTMARGIN='0' TOPMARGIN='0'>");
  29.   iswnd.document.writeln("<TABLE WIDTH='100%' CELLSPACING='0' CELLPADDING='0'>");
  30.  
  31.   iswnd.document.writeln("<TR><TD>");
  32.   iswnd.document.writeln("<img src='" + imgSrc + "' border='1'>");
  33.  
  34.   if (imgDesc != '') {
  35.  
  36.       iswnd.document.writeln("<p>" + imgDesc + "</p>");
  37.   }
  38.   
  39.   iswnd.document.writeln("</TD></TR>");
  40.  
  41.   iswnd.document.writeln("</TABLE>");
  42.   iswnd.document.writeln("</BODY>");
  43.  
  44.   return;
  45. }
  46.  
  47. function wndShot(href,rozmiar) {
  48.  
  49.   if (rozmiar == 0) {
  50.      wWidth  = screen.availWidth;
  51.      wHeight = screen.availHeight;
  52.      wTop    = 0;
  53.      wLeft   = 0;
  54.   } else if (rozmiar > 0) {
  55.      if (rozmiar == 1) { faktor = 0.8 }
  56.      if (rozmiar == 2) { faktor = 0.6 }
  57.      if (rozmiar == 3) { faktor = 0.4 }
  58.  
  59.      wWidth  = screen.availWidth * faktor;
  60.      wHeight = screen.availHeight * faktor;
  61.      wTop    = (screen.availHeight - wHeight)/2;
  62.      wLeft   = (screen.availWidth - wWidth)/2;
  63.   }
  64.  
  65.   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);
  66.  
  67. }
  68.