var gAutoPrint = true;

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n<html>\n\n<head>\n<title>Print-friendly page | Roger Ballen, Photographer</title>\n<link rel="stylesheet" type="text/css" href="css/rb_print.css">\n';
		
		html += '</he' + 'ad>\n\n<body>\n\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n\n</bo' + 'dy>\n\n</ht' + 'ml>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print feature is only available in modern browsers.");
	}
}
