To prevent respondents from printing forms during web interviewing, paste the following into the head tag (see customizing pages with tags):
//Disable form printing
<style type="text/css">
@media print
{
body { display : none; }
}
</style>