function openPrintWindow() {
	jQuery('#print-div').html(jQuery('#content-left').html());
	jQuery('#print-shade').show();
	jQuery('#print-window').show();
	jQuery('#print-shade').height(jQuery(document).height());
}

function openPrintWindow_listings() {
	jQuery('#print-div-listings').html(jQuery('#chiropractors').html());
	jQuery('#print-shade').show();
	jQuery('#print-window').show();
	jQuery('#print-shade').height(jQuery(document).height());
}

function closePrintWindow() {
	jQuery('#print-shade').hide();
	jQuery('#print-window').hide();
}
