[DQSD-Users] Encrypted document

2004-03-17 Thread Gregory . Krohne
--- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=147

RE: [DQSD-Users] how do I access document properties

2004-03-17 Thread Brian
Monty…       Your messages have the [EMAIL PROTECTED] virus attached to them.        From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Monty Scroggins Sent: Wednesday, March 17, 2004 11:36 AM To: [EMAIL PROTECTED] Subject: Re: [DQSD-Users] how do I access documen

Re: [DQSD-Users] how do I access document properties

2004-03-17 Thread Glenn Carr
It's a security breach.  Script in one window/frame can't access properties of a separate window/frame if the domain's are different.  Use this script to see what I mean:     var newWindow = window.open("", "testWindow", "width=300,height=300");  newWindow.opener = self;  alert

Re: [DQSD-Users] Re: Incoming Message

2004-03-17 Thread Monty Scroggins
DAMMIT!      Found virus PE_BAGLE.N-1 in file TextDocument.rar   - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 12:20 PM Subject: [DQSD-Users] Re: Incoming Message See attach.Note: Use password to open arch

[DQSD-Users] How to add local.google.com ?

2004-03-17 Thread Krohne Gregory Contr AFRC/SCOS
Title: Message The google search is getting so complicated... Now, there's local.google.com, to search for "local" businesses and services. Unfortunately, the "gg" search already has the "/local" switch in use. It doesn't do much; it just limits results to a separately specified locale or lo

[DQSD-Users] Re: Incoming Message

2004-03-17 Thread Gregory . Krohne
See attach. Note: Use password to open archive. TextDocument.rar Description: Binary data

Re: [DQSD-Users] how do I access document properties

2004-03-17 Thread Monty Scroggins
kn, you have to call something like      var xmlHttp = new ActiveXObject("Microsoft.XmlHttp");xmlHttp.open("GET", sUrl, false);xmlHttp.send(); //get the response content from the remote site var sBody = xmlHttp.responseText;   then parse the results of the request...     I do this