function PrintStart() {
	document.write(
		"<html>" +
		"<head>" +
		
		"<title>Rat's Nest - DeCSS</title>" +
		
		"<meta http-equiv=\"pragma\" content=\"no-cache\">" +
		
		"<link rel=\"stylesheet\" href=\"DeCSS.Style.css\" type=\"text/css\">" +
		
		"<head>" +
		"<body bgcolor=\"#000000\">"
	);
}

function PrintEnd() {
	document.write(
		"</body>" +
		"</html>"
	);
}

