Okay, duh! I found how to post properly so you can see my script. Sorry about the earlier jarbled mess. Thanks again for your input. CA
#!/usr/local/bin/perl BEGIN{unshift(@INC,"/usr/local/www/htdocs/pcworldlinks/cgi-bin/")}; use Cart; $path="/usr/local/www/htdocs/pcworldlinks/cgi-bin/DIST/"; %ele=Cart::cgiparse; if(!($ele{dist})){$dist=$ENV{'QUERY_STRING'};}else{$dist=$ele{dist};} %var=Cart::get_client($dist,$path); print "Content-Type: text/html\n\n"; if ($ele{dist}=~ /[guestmember]/i){ print <<"EOF"; <HTML> <HEAD> <script language="JavaScript"><!--- Hide from tired old browsers function go(url){ opener.parent.main.location.href=url; } // End hiding ---> </script> <base href="http://www.pcworldlinks.com/"> </HEAD> <TITLE>Welcome to Pro Celebrity Golf & Travel</TITLE> <frameset cols=16%,84% frameborder=no border=0 framespacing=0 noresize +=yes> <frame src="framedpgs/toolbarmg.htm" name="toolbar" scrolling=auto marginwidth=0 marginheight=0 noresize=yes> <frame src="Mainpage1.shtml" name="main" scrolling=auto marginwidth=0 marginheight=0 noresize=yes> </frameset> </frameset> <noframes> You need a frames capable browser to view this page. </noframes> </HTML> EOF }else{ print <<"EOF"; <HTML> <HEAD> <script language="JavaScript"> <!--- Hide from tired old browsers function go(url){ opener.parent.main.location.href=url; } // End hiding ---> </script> <base href="http://www.pcworldlinks.com/"> </HEAD> <TITLE>$var{title}</TITLE> <frameset cols=15%,* frameborder=no border=0 framespacing=0 noresize=y +es> <frame src="cgi-bin/cgiwrap/pcworldlinks/toolbarir.pl?$var{dist}" name +="toolbar" scrolling=auto marginwidth=0 marginheight=0 noresize=yes> <frameset rows=28%,*> <frame src="cgi-bin/cgiwrap/pcworldlinks/irnfo.pl?$var{dist}" name="ir +nfo" marginwidth=0 marginheight=0 scrolling=no> <frame src="cgi-bin/cgiwrap/pcworldlinks/main.pl?$var{dist}" name="mai +n" scrolling=auto marginwidth=0 marginheight=0 noresize=no> </frameset> </frameset> <noframes> You need a frames capable browser to view this page. </noframes> </HTML> EOF }

In reply to Re: Working for IE by Anonymous Monk
in thread Working for IE, not Netscape by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.