function printThisId(theid){
	$('#'.theid).printArea();
}

function openPrintVersion(thehtml){
	var title = 'print';
	var htmlStart = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><link rel="stylesheet" type="text/css" href="sites/all/themes/thehairroom/coupon_print.css"/></head><body>';
	var htmlEnd = '</body></html>';
	var thewindow = window.open('', title, 'scrollbars=no, menubar=yes, toolbar=yes, resizable=yes, width=600, height=400');
	thewindow.document.write(htmlStart);
	thewindow.document.write(thehtml);
	thewindow.document.write(htmlEnd);
	thewindow.print();
	//thewindow.close();
}