418 lines
21 KiB
HTML
418 lines
21 KiB
HTML
<HTML>
|
|
<HEAD>
|
|
<TITLE>Int 19
|
|
</TITLE>
|
|
<META NAME="Description" CONTENT="
|
|
Int 19 - SYSTEM - BOOTSTRAP LOADER -
|
|
Desc: This interrupt reboots the system without clearing memory or restoring
|
|
interrupt vectors. Because interrupt vectors are preserved, this
|
|
interrupt usually causes a system hang if any TSRs have hooked
|
|
vectors from 00h through 1Ch, particularly INT 08.
|
|
Notes: Usually, the BIOS will try to read sector 1, head 0, track 0 from drive
|
|
A: to 0000h:7C00h. If this fails, and a hard disk is installed, the
|
|
BIOS will read sector 1, head 0, track 0 of the first hard disk.
|
|
This sector should contain a master bootstrap loader and a partition
|
|
table (see #00650). After loading the master boot sector at
|
|
0000h:7C00h, the master bootstrap loader is given control
|
|
">
|
|
<META NAME="robots" CONTENT="none">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#FFD0A0">
|
|
<center>
|
|
<h2>Int 19
|
|
</h2>
|
|
</center><p>
|
|
<table border=1 cellpadding=3 cellspacing=1>
|
|
<td>
|
|
<a href="rb-2269.htm" tppabs="http://www.ctyme.com/intr/rb-2269.htm">
|
|
<img src="lup.gif" tppabs="http://graphics.ctyme.com/gif/lup.gif" border=0 alt=Prev></a>
|
|
<a href="rb-2271.htm" tppabs="http://www.ctyme.com/intr/rb-2271.htm">
|
|
<img src="ldown.gif" tppabs="http://graphics.ctyme.com/gif/ldown.gif" border=0 alt=Next></a>
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/rbrown.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/rbrown.htm'" tppabs="http://www.ctyme.com/rbrown.htm">
|
|
<img src="lhome.gif" tppabs="http://graphics.ctyme.com/gif/lhome.gif" border=0 alt=Ralf Brown Page></a>
|
|
<td><a href="int.htm" tppabs="http://www.ctyme.com/intr/int.htm">Interrups</a></td>
|
|
<td><a href="cat.htm" tppabs="http://www.ctyme.com/intr/cat.htm">Categories</a></td>
|
|
<td><a href="alpha.htm" tppabs="http://www.ctyme.com/intr/alpha.htm">Contents</a></td>
|
|
</td></table><p>
|
|
<p><img src="rbline.gif" tppabs="http://graphics.ctyme.com/gif/rbline.gif" width="100%" alt="------"><p>
|
|
<h3><font color=#C00040>SYSTEM - BOOTSTRAP LOADER</font></h3>
|
|
<p><b>Desc:</b>
|
|
This interrupt reboots the system without clearing memory or restoring
|
|
interrupt vectors. Because interrupt vectors are preserved, this
|
|
interrupt usually causes a system hang if any TSRs have hooked
|
|
vectors from 00h through 1Ch, particularly INT 08.
|
|
<p><b>Notes:</b>
|
|
Usually, the BIOS will try to read sector 1, head 0, track 0 from drive
|
|
<PRE>
|
|
<p><b>A:</b><br>To 0000h:7C00h. If this fails, and a hard disk is installed, the
|
|
BIOS will read sector 1, head 0, track 0 of the first hard disk.
|
|
This sector should contain a master bootstrap loader and a partition
|
|
table <a href="rb-2270.htm#Table650" tppabs="http://www.ctyme.com/intr/rb-2270.htm#Table650">(see #00650)</a>. After loading the master boot sector at
|
|
0000h:7C00h, the master bootstrap loader is given control
|
|
<a href="rb-2270.htm#Table653" tppabs="http://www.ctyme.com/intr/rb-2270.htm#Table653">(see #00653)</a>. It will scan the partition table for an active
|
|
partition, and will then load the operating system's bootstrap
|
|
loader (contained in the first sector of the active partition) and
|
|
give it control..
|
|
True IBM PCs and most clones issue an INT 18 if neither floppy nor hard
|
|
disk have a valid boot sector.
|
|
To accomplish a warm boot equivalent to Ctrl-Alt-Del, store 1234h in
|
|
0040h:0072h and jump to FFFFh:0000h. For a cold boot equivalent to
|
|
a reset, store 0000h at 0040h:0072h before jumping..
|
|
VDISK.SYS hooks this interrupt to allow applications to find out how
|
|
much extended memory has been used by VDISKs <a href="rb-2270.htm#Table649" tppabs="http://www.ctyme.com/intr/rb-2270.htm#Table649">(see #00649)</a>. DOS 3.3+
|
|
PRINT hooks INT 19 but does not set up a correct VDISK header block
|
|
at the beginning of its INT 19 handler segment, thus causing some
|
|
programs to overwrite extended memory which is already in use..
|
|
The default handler is at F000h:E6F2h for 100% compatible BIOSes.
|
|
MS-DOS 3.2+ hangs on booting (even from floppy) if the hard disk
|
|
contains extended partitions which point at each other in a loop,
|
|
since it will never find the end of the linked list of extended
|
|
partitions.
|
|
Under Windows Real and Enhanced modes, calling INT 19 will hang the
|
|
system in the same was as under bare DOS; under Windows Standard
|
|
mode, INT 19 will successfully perform a cold reboot as it appears
|
|
to have been redirected to a MOV AL,0FEh/OUT 64h,AL sequence
|
|
</PRE>
|
|
<p><b>BUG:</b>
|
|
When loading the remainder of the DOS system files fails, various
|
|
versions of IBMBIO.COM/IO.SYS incorrectly restore INT 1E before
|
|
calling INT 19, assuming that the boot sector had stored the
|
|
contents of INT 1E at DS:SI instead of on the stack as it actually
|
|
does
|
|
<p><b>See Also:</b>
|
|
<a href="rb-0929.htm" tppabs="http://www.ctyme.com/intr/rb-0929.htm">INT 14/AH=17h</a> - <a href="rb-2241.htm" tppabs="http://www.ctyme.com/intr/rb-2241.htm">INT 18"BOOT HOOK"</a> - <a href="rb-6217.htm" tppabs="http://www.ctyme.com/intr/rb-6217.htm">INT 49"Tandy 2000"</a> - <a href="rb-6377.htm" tppabs="http://www.ctyme.com/intr/rb-6377.htm">INT 5B"PC Cluste
|
|
<p><b>See Also:</b>
|
|
MEM 0040h:0067h - MEM F000h:FFF0h - CMOS 0Fh
|
|
<PRE>
|
|
<p>
|
|
Format of VDISK header block (at beginning of INT 19 handler's segment):
|
|
<a name=table649></a>
|
|
Offset Size Description (Table 00649)
|
|
00h 18 BYTEs n/a (for VDISK.SYS, the device driver header)
|
|
12h 11 BYTEs signature string "VDISK Vn.m" for VDISK.SYS version n.m
|
|
1Dh 15 BYTEs n/a
|
|
2Ch 3 BYTEs linear address of first byte of available extended memory
|
|
<p>
|
|
Format of hard disk master boot sector:
|
|
<a name=table650></a>
|
|
Offset Size Description (Table 00650)
|
|
00h 446 BYTEs Master bootstrap loader code
|
|
1BEh 16 BYTEs partition record for partition 1 <a href="rb-2270.htm#Table651" tppabs="http://www.ctyme.com/intr/rb-2270.htm#Table651">(see #00651)</a>
|
|
1CEh 16 BYTEs partition record for partition 2
|
|
1DEh 16 BYTEs partition record for partition 3
|
|
1EEh 16 BYTEs partition record for partition 4
|
|
1FEh WORD signature, AA55h indicates valid boot block
|
|
<p>
|
|
Format of partition record:
|
|
<a name=table651></a>
|
|
Offset Size Description (Table 00651)
|
|
00h BYTE boot indicator (80h = active partition)
|
|
01h BYTE partition start head
|
|
02h BYTE partition start sector (bits 0-5)
|
|
03h BYTE partition start track (bits 8,9 in bits 6,7 of sector)
|
|
04h BYTE operating system indicator <a href="rb-2270.htm#Table652" tppabs="http://www.ctyme.com/intr/rb-2270.htm#Table652">(see #00652)</a>
|
|
05h BYTE partition end head
|
|
06h BYTE partition end sector (bits 0-5)
|
|
07h BYTE partition end track (bits 8,9 in bits 6,7 of sector)
|
|
08h DWORD sectors preceding partition
|
|
0Ch DWORD length of partition in sectors
|
|
</PRE>
|
|
<p><b>See Also:</b>
|
|
#00650
|
|
<PRE>
|
|
<p>
|
|
<a name=table652></a>
|
|
(Table 00652)
|
|
Values for operating system indicator:
|
|
00h empty partition-table entry
|
|
01h DOS 12-bit FAT
|
|
02h XENIX root file system
|
|
03h XENIX /usr file system (obsolete)
|
|
04h DOS 16-bit FAT (up to 32M)
|
|
05h DOS 3.3+ extended partition
|
|
06h DOS 3.31+ Large File System (16-bit FAT, over 32M)
|
|
07h QNX
|
|
07h OS/2 HPFS
|
|
07h Windows NT NTFS
|
|
07h Advanced Unix
|
|
07h see partition boot record; could be any of the above or others
|
|
08h OS/2 (v1.0-1.3 only)
|
|
08h AIX bootable partition, SplitDrive
|
|
08h Commodore DOS
|
|
08h DELL partition spanning multiple drives
|
|
09h AIX data partition
|
|
09h Coherent filesystem
|
|
0Ah OS/2 Boot Manager
|
|
0Ah OPUS
|
|
0Ah Coherent swap partition
|
|
0Bh Windows95 with 32-bit FAT
|
|
0Ch Windows95 with 32-bit FAT (using LBA-mode INT 13 extensions)
|
|
0Eh logical-block-addressable VFAT (same as 06h but using LBA-mode INT 13)
|
|
0Fh logical-block-addressable VFAT (same as 05h but using LBA-mode INT 13)
|
|
10h OPUS
|
|
11h OS/2 Boot Manager hidden 12-bit FAT partition
|
|
12h Compaq Diagnostics partition
|
|
14h (resulted from using Novell DOS 7.0 FDISK to delete Linux Native part)
|
|
14h OS/2 Boot Manager hidden sub-32M 16-bit FAT partition
|
|
16h OS/2 Boot Manager hidden over-32M 16-bit FAT partition
|
|
17h OS/2 Boot Manager hidden HPFS partition
|
|
17h hidden NTFS partition
|
|
18h AST special Windows swap file ("Zero-Volt Suspend" partition)
|
|
19h Willowtech Photon coS
|
|
1Bh hidden Windows95 FAT32 partition
|
|
1Ch hidden Windows95 FAT32 partition (using LBA-mode INT 13 extensions)
|
|
1Eh hidden LBA VFAT partition
|
|
20h Willowsoft Overture File System (OFS1)
|
|
21h officially listed as reserved
|
|
21h FSo2
|
|
23h officially listed as reserved
|
|
24h NEC MS-DOS 3.x
|
|
26h officially listed as reserved
|
|
31h officially listed as reserved
|
|
33h officially listed as reserved
|
|
34h officially listed as reserved
|
|
36h officially listed as reserved
|
|
38h Theos
|
|
3Ch PowerQuest PartitionMagic recovery partition
|
|
40h VENIX 80286
|
|
41h Personal RISC Boot
|
|
41h PowerPC boot partition
|
|
42h SFS (Secure File System) by Peter Gutmann
|
|
45h EUMEL/Elan
|
|
46h EUMEL/Elan
|
|
47h EUMEL/Elan
|
|
48h EUMEL/Elan
|
|
4Fh Oberon boot/data partition
|
|
50h OnTrack Disk Manager, read-only partition
|
|
51h OnTrack Disk Manager, read/write partition
|
|
51h NOVELL
|
|
52h CP/M
|
|
52h Microport System V/386
|
|
53h OnTrack Disk Manager, write-only partition???
|
|
54h OnTrack Disk Manager (DDO)
|
|
55h EZ-Drive (see also INT 13/AH=FFh"EZ-Drive")
|
|
56h GoldenBow VFeature
|
|
5Ch Priam EDISK
|
|
61h SpeedStor
|
|
63h Unix SysV/386, 386/ix
|
|
63h Mach, MtXinu BSD 4.3 on Mach
|
|
63h GNU HURD
|
|
64h Novell NetWare 286
|
|
64h SpeedStore
|
|
65h Novell NetWare (3.11)
|
|
67h Novell
|
|
68h Novell
|
|
69h Novell
|
|
70h DiskSecure Multi-Boot
|
|
71h officially listed as reserved
|
|
73h officially listed as reserved
|
|
74h officially listed as reserved
|
|
75h PC/IX
|
|
76h officially listed as reserved
|
|
7Eh F.I.X.
|
|
80h Minix v1.1 - 1.4a
|
|
81h Minix v1.4b+
|
|
81h Linux
|
|
81h Mitac Advanced Disk Manager
|
|
82h Linux Swap partition
|
|
82h Prime
|
|
82h Solaris (Unix)
|
|
83h Linux native file system (ext2fs/xiafs)
|
|
<p><b>84h OS/2-renumbered type 04h partition (related to hiding DOS C:</b><br>Drive)
|
|
85h Linux EXT
|
|
86h FAT16 volume/stripe set (Windows NT)
|
|
87h HPFS Fault-Tolerant mirrored partition
|
|
87h NTFS volume/stripe set
|
|
93h Amoeba file system
|
|
94h Amoeba bad block table
|
|
98h Datalight ROM-DOS SuperBoot
|
|
99h Mylex EISA SCSI
|
|
A0h Phoenix NoteBIOS Power Management "Save-to-Disk" partition
|
|
A1h officially listed as reserved
|
|
A3h officially listed as reserved
|
|
A4h officially listed as reserved
|
|
A5h FreeBSD, BSD/386
|
|
A6h OpenBSD
|
|
A9h NetBSD (http://www.netbsd.org/)
|
|
B1h officially listed as reserved
|
|
B3h officially listed as reserved
|
|
B4h officially listed as reserved
|
|
B6h officially listed as reserved
|
|
B6h Windows NT mirror set (master), FAT16 file system
|
|
B7h BSDI file system (secondarily swap)
|
|
B7h Windows NT mirror set (master), NTFS file system
|
|
B8h BSDI swap partition (secondarily file system)
|
|
BEh Solaris boot partition
|
|
C0h DR DOS/DR-DOS/Novell DOS secured partition
|
|
C0h CTOS
|
|
C1h DR DOS 6.0 LOGIN.EXE-secured 12-bit FAT partition
|
|
C4h DR DOS 6.0 LOGIN.EXE-secured 16-bit FAT partition
|
|
C6h DR DOS 6.0 LOGIN.EXE-secured Huge partition
|
|
C6h corrupted FAT16 volume/stripe set (Windows NT)
|
|
C6h Windows NT mirror set (slave), FAT16 file system
|
|
C7h Syrinx Boot
|
|
C7h corrupted NTFS volume/stripe set
|
|
C7h Windows NT mirror set (slave), NTFS file system
|
|
CBh Reserved for DR DOS/DR-DOS/OpenDOS secured FAT32
|
|
CCh Reserved for DR DOS/DR-DOS secured FAT32 (LBA)
|
|
CEh Reserved for DR DOS/DR-DOS secured FAT16 (LBA)
|
|
D0h Multiuser DOS secured FAT12
|
|
D1h Old Multiuser DOS secured FAT12
|
|
D4h Old Multiuser DOS secured FAT16 (<= 32M)
|
|
D5h Old Multiuser DOS secured extended partition
|
|
D6h Old Multiuser DOS secured FAT16 (> 32M)
|
|
D8h CP/M-86
|
|
DBh CP/M, Concurrent CP/M, Concurrent DOS
|
|
DBh CTOS (Convergent Technologies OS)
|
|
E1h SpeedStor 12-bit FAT extended partition
|
|
E2h DOS read-only (Florian Painke's XFDISK 1.0.4)
|
|
E3h DOS read-only
|
|
E3h Storage Dimensions
|
|
E4h SpeedStor 16-bit FAT extended partition
|
|
E5h officially listed as reserved
|
|
E6h officially listed as reserved
|
|
EBh BeOS BFS (BFS1)
|
|
F1h Storage Dimensions
|
|
F2h DOS 3.3+ secondary partition
|
|
F3h officially listed as reserved
|
|
F4h SpeedStor
|
|
F4h Storage Dimensions
|
|
F5h Prologue
|
|
F6h officially listed as reserved
|
|
FEh LANstep
|
|
FEh IBM PS/2 IML (Initial Microcode Load) partition
|
|
FFh Xenix bad block table
|
|
</PRE>
|
|
<p><b>Note:</b>
|
|
For partition type 07h, one should inspect the partition boot record
|
|
for the actual file system type
|
|
<p><b>See Also:</b>
|
|
#00651
|
|
<PRE>
|
|
<p>
|
|
<a name=table653></a>
|
|
(Table 00653)
|
|
Values Bootstrap loader is called with (IBM BIOS):.
|
|
CS:IP = 0000h:7C00h.
|
|
DH = access
|
|
<p><b>bits 7-6,4-0:</b><br>Don't care
|
|
<p><b>bit 5:</b><br>=0 device supported by INT 13.
|
|
DL = boot drive
|
|
00h first floppy
|
|
80h first hard disk
|
|
</PRE>
|
|
<p>
|
|
<b>Category: <a href="cat-003.htm" tppabs="http://www.ctyme.com/intr/cat-003.htm">
|
|
Bios</a>
|
|
- <a href="int-19.htm" tppabs="http://www.ctyme.com/intr/int-19.htm">
|
|
Int 19h</a>
|
|
- <a href="alpha-s.htm" tppabs="http://www.ctyme.com/intr/alpha-s.htm">
|
|
S</a>
|
|
</b><p><p><img src="rbline.gif" tppabs="http://graphics.ctyme.com/gif/rbline.gif" width="100%" alt="------"><p>
|
|
<table border=1 cellpadding=3 cellspacing=1>
|
|
<td>
|
|
<a href="rb-2269.htm" tppabs="http://www.ctyme.com/intr/rb-2269.htm">
|
|
<img src="lup.gif" tppabs="http://graphics.ctyme.com/gif/lup.gif" border=0 alt=Prev></a>
|
|
<a href="rb-2271.htm" tppabs="http://www.ctyme.com/intr/rb-2271.htm">
|
|
<img src="ldown.gif" tppabs="http://graphics.ctyme.com/gif/ldown.gif" border=0 alt=Next></a>
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/rbrown.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/rbrown.htm'" tppabs="http://www.ctyme.com/rbrown.htm">
|
|
<img src="lhome.gif" tppabs="http://graphics.ctyme.com/gif/lhome.gif" border=0 alt=Ralf Brown Page></a>
|
|
<td><a href="int.htm" tppabs="http://www.ctyme.com/intr/int.htm">Interrups</a></td>
|
|
<td><a href="cat.htm" tppabs="http://www.ctyme.com/intr/cat.htm">Categories</a></td>
|
|
<td><a href="alpha.htm" tppabs="http://www.ctyme.com/intr/alpha.htm">Contents</a></td>
|
|
</td></table><p>
|
|
|
|
<!-- Bottom Link Start -->
|
|
|
|
<center>
|
|
|
|
<p><table border=1 bgcolor="#ffff99"><tr><td>
|
|
<table border=0 height=80>
|
|
<tr align=center><td width="65">
|
|
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/sponsor.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/sponsor.htm'" tppabs="http://www.ctyme.com/sponsor.htm">
|
|
<img src="tip.gif" tppabs="http://graphics.ctyme.com/gif/tip.gif" ALT="Sponsors" height="40" width="40"></a>
|
|
<br><a href="javascript:if(confirm('http://www.ctyme.com/sponsor.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/sponsor.htm'" tppabs="http://www.ctyme.com/sponsor.htm">Shopping</a>
|
|
|
|
</td><td width="65">
|
|
|
|
<a href="javascript:if(confirm('http://talk.ctyme.com/webx.cgi?13@@.ee6b2be \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://talk.ctyme.com/webx.cgi?13@@.ee6b2be'" tppabs="http://talk.ctyme.com/webx.cgi?13@@.ee6b2be">
|
|
<img src="comment.gif" tppabs="http://graphics.ctyme.com/gif/comment.gif" ALT="Forum" height="40" width="40"></a>
|
|
<br><a href="javascript:if(confirm('http://talk.ctyme.com/webx.cgi?13@@.ee6b2be \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://talk.ctyme.com/webx.cgi?13@@.ee6b2be'" tppabs="http://talk.ctyme.com/webx.cgi?13@@.ee6b2be">Forum</a>
|
|
|
|
</td><td width="65">
|
|
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/mail.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/mail.htm'" tppabs="http://www.ctyme.com/mail.htm">
|
|
<img src="mail.gif" tppabs="http://graphics.ctyme.com/gif/mail.gif" ALT="email" height="40" width="40"></a>
|
|
<br><a href="javascript:if(confirm('http://www.ctyme.com/mail.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/mail.htm'" tppabs="http://www.ctyme.com/mail.htm">EMail</a>
|
|
|
|
</td><td width="65">
|
|
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/map.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/map.htm'" tppabs="http://www.ctyme.com/map.htm">
|
|
<img src="toc.gif" tppabs="http://graphics.ctyme.com/gif/toc.gif" ALT="Index" height="40" width="40"></a>
|
|
<br><a href="javascript:if(confirm('http://www.ctyme.com/map.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/map.htm'" tppabs="http://www.ctyme.com/map.htm">Index</a>
|
|
|
|
</td><td width="65">
|
|
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/ \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/'" tppabs="http://www.ctyme.com/">
|
|
<img src="home.gif" tppabs="http://graphics.ctyme.com/gif/home.gif" ALT="Home" height="40" width="40"></a>
|
|
<br><a href="javascript:if(confirm('http://www.ctyme.com/ \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/'" tppabs="http://www.ctyme.com/">Home</a>
|
|
|
|
</td><td width="90">
|
|
|
|
<center>
|
|
<FORM ACTION="https://secure.paypal.com/cgi-bin/webscr" tppabs="https://secure.paypal.com/cgi-bin/webscr" METHOD="POST" traget="_blank">
|
|
<INPUT TYPE="hidden" NAME="cmd" VALUE="_xclick">
|
|
<INPUT TYPE="hidden" NAME="business" VALUE="marc@perkel.com">
|
|
<INPUT TYPE="hidden" NAME="return" VALUE="http://www.perkel.com">
|
|
<INPUT TYPE="hidden" NAME="item_name" VALUE="Donation To Support this Site">
|
|
<INPUT TYPE="hidden" NAME="no_intl" VALUE="1">
|
|
<INPUT TYPE="image" SRC="x-click-but7.gif" tppabs="http://images.paypal.com/images/x-click-but7.gif" vspace=9
|
|
NAME="submit" ALT="Make payments with PayPal - it's fast, free and secure!">
|
|
</FORM>
|
|
|
|
</td></tr></table></td></tr></table><p>
|
|
|
|
|
|
<center>
|
|
<p>
|
|
<a href="javascript:if(confirm('http://www.ctyme.com/hosting/index.htm \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.ctyme.com/hosting/index.htm'" tppabs="http://www.ctyme.com/hosting/index.htm" target="_blank">
|
|
<img src="ctymehost.gif" tppabs="http://graphics.ctyme.com/gif/ctymehost.gif"
|
|
border=3 height=60 width=468></a>
|
|
<p>
|
|
<!-- Ad End --->
|
|
|
|
</center>
|
|
<FORM ACTION="http://service.bfast.com/bfast/click" target="_blank">
|
|
<INPUT TYPE="hidden" NAME="siteid" VALUE="30472466" >
|
|
<INPUT TYPE="hidden" NAME="bfpage" VALUE="horizontal">
|
|
<INPUT TYPE="hidden" NAME="bfmid" VALUE="27253343" >
|
|
<INPUT TYPE="hidden" NAME="num" VALUE="30">
|
|
|
|
<table bgcolor=white border=3><tr><td>
|
|
<table bgcolor=white border=0>
|
|
<tr><td>
|
|
<IMG SRC="serve-bfmid=27253343&siteid=30472466&bfpage=horizontal.gif" tppabs="http://service.bfast.com/bfast/serve?bfmid=27253343&siteid=30472466&bfpage=horizontal" BORDER="0" WIDTH="1" HEIGHT="1" align=right NOSAVE >
|
|
<center><b>Search the web with Google</b></center>
|
|
</td></tr><tr><td>
|
|
<TABLE cellpadding=0 cellspacing=5 bgcolor="#FFFFFF">
|
|
<tr><td bgcolor="#0000cc"><IMG SRC="cleardot.gif" tppabs="http://www.google.com/images/cleardot.gif" height=1 border="0" ALT="Google"></td></tr><tr><td>
|
|
<IMG SRC="affiliate_logo.gif" tppabs="http://www.google.com/affiliates/affiliate_logo.gif" border="0" ALT="Google" align="center">
|
|
<INPUT TYPE=text name=q size=30 maxlength=255 value="">
|
|
<INPUT type=submit name=sa VALUE="Go">
|
|
</td></tr>
|
|
<tr><td bgcolor="#0000cc"><IMG SRC="cleardot.gif" tppabs="http://www.google.com/images/cleardot.gif" height=1 border="0" ALT="Google"></td></tr></TABLE>
|
|
</td></tr></table>
|
|
</tr></td></table>
|
|
</FORM>
|
|
|
|
</center>
|
|
|
|
|
|
<p><img src="rbline.gif" tppabs="http://graphics.ctyme.com/gif/rbline.gif" width="100%" alt="------"><p>
|
|
|
|
<!-- Bottom Link End -->
|
|
|
|
</BODY>
|
|
</HTML>
|