// JavaScript Document
function printThisPage()
{
	var tekst = document.getElementById('divPrintout').innerHTML;
	
	var newWindow = window.open("http://www.oppskriftssiden.no/print.php", "Print"); 
	newWindow.document.write("<html><head><link rel=\"stylesheet\" type=\"text\/css\" href=\"..\/css\/styles.css\" \/><\/head>");
	newWindow.document.write("<body id=\"body\" onload=\"window.print()\">" + tekst);
	newWindow.focus();
	newWindow.document.writeln("<\/body><\/html>");
	newWindow.location.reload();

}
