home *** CD-ROM | disk | FTP | other *** search
- function ShowHideDetails()
- {
- if(details.style.display!="")
- {
- details.style.display="";
- ShowHide.innerHTML="<a href=\"javascript:ShowHideDetails()\">Hide Details</a>";
- }
- else
- {
- details.style.display="none";
- ShowHide.innerHTML="<a href=\"javascript:ShowHideDetails()\">Show Details</a>";
- }
- }
-
- function ManualContactCursorIn ()
- {
- event.srcElement.style.cursor='hand';
- status='Compose e-mail to ' + event.srcElement.email;
- }
-
- function ManualContactCursorOut()
- {
- status = '';
- }
-
-
- function ManualImageURLClick()
- {
- event.returnValue = false;
- options = "toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes";
- nwin = window.open("","", options);
- ndoc = nwin.document;
- ndoc.writeln('<HTML><HEAD><TITLE>Examining '+event.srcElement.href+'</TITLE>');
- ndoc.writeln('<STYLE>BODY,P,TD { font: 10pt Verdana, Arial, Helvetica, Sans-serif }\n');
- ndoc.writeln('</STYLE></HEAD>\n');
- ndoc.writeln('<BODY>\n');
-
- ndoc.writeln('You clicked on the image with the URL '+event.srcElement.href+'.<BR><BR>\n');
- ndoc.writeln('Here\'s what this image looks like surrounded with a red box:<BR>\n');
- ndoc.writeln('<IMG STYLE="border: red double 2px" SRC="'+event.srcElement.href+'">\n');
- ndoc.writeln('<BR>If you only see what looks a tiny red box above, then the image\n');
- ndoc.writeln('would be very hard to see with the naked eye.\n');
- ndoc.writeln('</BODY></HTML>\n');
- }
-