function printThis() {
	var a = window.open('','printing','scrollbars=yes,width=700');
	a.document.open("text/html");
	a.document.write('<html><head><link href="/main1.css" rel="stylesheet" type="text/css" /><link href="/print.css" rel="stylesheet" type="text/css" /></head><body>');
	a.document.write($(".printable").html());
	a.document.write('</body></html>');
	a.document.close();
	a.print();
	a.close();
}
function printProduct() {
	var a = window.open('','printing','scrollbars=yes,width=700');
	a.document.open("text/html");
	a.document.write('<html><head><link href="/main1.css" rel="stylesheet" type="text/css" /><link href="/print.css" rel="stylesheet" type="text/css" /></head><body>');
	var areas = $(".printable");
	for (var i=0; i<areas.length; i++) {
		a.document.write('<div style="clear:both;">'+areas[i].innerHTML+'</div>');
	}
	a.document.write('</body></html>');
	a.document.close();
	a.print();
	a.close();
}
