Well, you can do it with CSS... in a way. Using the @media parameter, basically you take all the content you have on the page and set it to display: none, leaving only the Main image content visible. Like so:
Code:
# @media print
# {
# body{font-family:georgia,times,sans-serif;}
# #left{display:none;}
# #center{display:none;}
# #right{display:none;}
# #Main_Image{display:block;}
# }
#
# @media screen
# {
# body{font-family:arial,verdana,sans-serif;}
# #left{display:block;margin:20px;}
# #center{display:block;margin:20px;}
# #right{display:block;margin:20px;}
# #Main_Image{display:block;margin:20px;}
# }
The above assumes you have 4 ID's on your page, "left", "center", "right" and "Main Image". When the print button is pressed, the printer "sees" only the "Main Image" div (table, whatever) and that's all it prints.
Bookmarks