You can't print a specific area of a page, but you can hide the rest of the page when printing. Create a CSS that hides the element that you don't want to print:
@media print {
.someelement, .otherelement, .morelement { display: none; }
}
Guffa
2010-09-06 05:51:33