####
if ($title) {
push @{$cart}, {TITLE=>$title,ANS1=>$ans1,ANS2=>$ans2,ANS3=>$ans3,ANS4=>$temp};
$session->param("CART",$cart);
}
my $template = HTML::Template->new(filename =>'checkouttemp.html');
$template->param(ROWS=>$cart);
print $template->output();
}