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
Wrap
Text File
|
2002-09-03
|
2KB
|
66 lines
function bigShot(tytul,imgSrc,imgDesc,rozmiar) {
if (rozmiar == 0) {
wWidth = screen.availWidth;
wHeight = screen.availHeight;
wTop = 0;
wLeft = 0;
} else if (rozmiar > 0) {
if (rozmiar == 1) { faktor = 0.9 }
if (rozmiar == 2) { faktor = 0.6 }
if (rozmiar == 3) { faktor = 0.4 }
wWidth = screen.availWidth * faktor;
wHeight = screen.availHeight * faktor;
wTop = (screen.availHeight - wHeight)/2;
wLeft = (screen.availWidth - wWidth)/2;
}
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);
iswnd.document.writeln("<HEAD><TITLE>"+tytul+"</TITLE>");
iswnd.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-2'>")
iswnd.document.writeln("<LINK REL='stylesheet' TYPE='text/css' HREF='/css/std.css'>");
iswnd.document.writeln("</HEAD>");
iswnd.document.writeln("<BODY BACKGROUND='/img/bkg/cs_bkg2.jpg'>");
iswnd.document.writeln("<TABLE WIDTH='100%' CELLSPACING='0' CELLPADDING='0'>");
iswnd.document.writeln("<TR><TD>");
iswnd.document.writeln("<img src='" + imgSrc + "' border='1'>");
if (imgDesc != '') {
iswnd.document.writeln("<p>" + imgDesc + "</p>");
}
iswnd.document.writeln("</TD></TR>");
iswnd.document.writeln("</TABLE>");
iswnd.document.writeln("</BODY>");
return;
}
function wndShot(href,rozmiar) {
if (rozmiar == 0) {
wWidth = screen.availWidth;
wHeight = screen.availHeight;
wTop = 0;
wLeft = 0;
} else if (rozmiar > 0) {
if (rozmiar == 1) { faktor = 0.8 }
if (rozmiar == 2) { faktor = 0.6 }
if (rozmiar == 3) { faktor = 0.4 }
wWidth = screen.availWidth * faktor;
wHeight = screen.availHeight * faktor;
wTop = (screen.availHeight - wHeight)/2;
wLeft = (screen.availWidth - wWidth)/2;
}
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);
}