// JavaScript Document - Home Functions
function PrintLines(contentId){
	var DocumentContainer = document.getElementById(contentId);
	var WindowObject = newPopup('', 'PrintWindow', 750, 620, true);
	WindowObject.document.writeln('<html><head><link rel=stylesheet type=text/css href="css/style.css"/><link rel=stylesheet type=text/css href="lines/live-lines.css"/><link rel=stylesheet type=text/css href="lines/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css"/><style>html, body   {background:#FFFFFF;background-image:none;margin:0;padding:0;}</style></head><body>');
	WindowObject.document.writeln(DocumentContainer.innerHTML.split('images/print-32x32.gif').join('images/blank.gif').split('<link type="text/css" href="live-lines.css" rel="stylesheet">').join(''));
	WindowObject.document.writeln('</body></html>');
	WindowObject.document.close();
	WindowObject.focus();
	WindowObject.print();
	WindowObject.close();
}