First commit 18/08/2000

This commit is contained in:
2021-09-12 22:40:30 +02:00
commit e721637efc
531 changed files with 16045 additions and 0 deletions

36
iprod/tprods.htm Normal file
View File

@ -0,0 +1,36 @@
<HTML><HEAD><TITLE>PhotoPreview</TITLE>
</HEAD>
<BODY oncontextmenu="FullScreen();return false" onselectstart="return false"
ondragstart="return false" text=#000000 bgColor=#FFFFFF leftMargin=0
topMargin=0>
<!-- bgColor=#0d5ab9 -->
<SCRIPT language=JavaScript>
<!--// Hidden to old browsers
var msg;
function FullScreen()
{
// msg = window.open(document.images['preview'].src,"displayWindow","toolbar=no,scrollbars=no,width="+(50+document.images['preview'].width) + ",height="+(50+document.images['preview'].height));
if ( msg )
msg.close();
msg =
window.open("","displayWindow","width=10,height=10,top=200,left=200,toolbar=no,scrollbars=no,menubar=no,status=no,location=no,resizable=no");
msg.document.writeln('<html><head><title>www.infdj.com</title></head><body>');
msg.document.writeln('<p align="center">');
msg.document.writeln('<img name="O" src="'+document.images['preview'].src+'" onLoad="window.resizeTo(document.images[\'O\'].width+50,document.images[\'0\'].height+70);">');
msg.document.writeln('</p></body></html>');
}