To add to gellyfish's comment if you had strict and warnings on you would have been alerted to a stray 'i' (see the comment below). There were other quoting issues too (also commented). I've taken the liberty of adding some white space. I don't know if it will now do what you want but at least it compiles which imo is a good start. :-)

#!/bin/perl5 use strict; use warnings; my $JSCRIPT=<<END; # added my var cal = new CalendarPopup("testdiv"); cal.setCssPrefix("TEST"); cal.showYearNavigation(); END my $JSCRIPT2=<<END2; # added my writeSource("jscal1"); END2 print start_html( -style=>{ -src=>[ '/styles/print.css','/styles/yreg_lite_v5.css' ], -media => 'all' }, -title=>'MIS - People Data', -script=>[ { -language => 'JavaScript', #-src => i '/javascript/ValidateForm.js' -src => '/javascript/ValidateForm.js' # removed the i }, { -language => 'JavaScript', -src => '/javascript/CalendarPopup.js' }, { -language => 'JavaScript', -src => '/javascript/AnchorPosition.js' }, { -language => 'JavaScript', -src => '/javascript/date.js' }, { -language => 'JavaScript', -src => '/javascript/PopupWindow.js' }, { -id=>'jscal1', -code=>$JSCRIPT }, $JSCRIPT2 ] ); print table( { -width=>'97%', -cellpadding=>4, -cellspacing=>5 }, Tr( { -align=>'RIGHT', # quotes added -valign=>'TOP' # quotes added }, td( submit( -name=>'Update', -value=>'Update', -onClick('ValidateForm(this.form)') # quotes added ) ) ) );

In reply to Re: JScript and Perl by wfsp
in thread JScript and Perl 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.