function openPrintFriendlyWindow(){
	window.open(window.location.href,"printFriendlyWindow");
}

if(window.name == "printFriendlyWindow"){
	document.write('<link href="/parts/ascii/css/print.css" rel="stylesheet" type="text/css" media="screen, projection, tv, print" />');
}

window.onload = function(){
	if (document.getElementById) {
		var elem = document.getElementById('topicPath');
		if (elem) {
			elem.className = 'topicPathOnPrint';
		}
	}
}