With JavaScript, the code is real simple:
First, build the page, and make sure it doesn't contain anything but the card you want to print. Then, make an event on the image, like this:
OnClick="PrintFunction()"
PrintFunction must be defined fron JafaScript like this:
function PrintFunction(){
text=document;
print(text);
}
And that's it, at least with JS.
Hope it helps
fLIPIS