#!/usr/bin/perl use CGI; $co = new CGI; print $co->header, $co->start_html( -title=>'Email Sound Services', -author=>'Sound Services', -BGCOLOR=>'FFFFFF', -text=>'000000'); if ($co->param()) { $email = $co->param('email'); $from = $co->param('name'); $from =~ s/@/\@/; $deptauth = $co->param('deptauth'); $deptauth =~ s/@/\@/; $date = $co->param('date'); $phone = $co->param('phone'); $timeIn = $co->param('timeIn'); $dress = $co->param('dress'); $startShow =$co->param('startShow'); $ensemble = $co->param('Ensemble'); $location = $co->param('Location'); $comments = $co->param('Comments'); $comments =~ s/\n/g; print $co->center($co->h1('Request for Sound Services submitted for approval.')), $co->hr, $co->br, $htmlmess, $co->end_html;