﻿
function printcontent(Theme) {
	newwindow2 = window.open('', 'name', 'height=600,width=800');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>popup</title>');
	tmp.write('<link rel="stylesheet" href="/style.css">');
	tmp.write('<link rel="stylesheet" href="/App_Themes/' + Theme + '/style.css">');
	tmp.write('<style type="text/css">');
	tmp.write('body{');
	tmp.write('background: none;');
	tmp.write('}');
	tmp.write('</style>');
	tmp.write('<script type="text/javascript">');
	tmp.write('window.onload = function() {');
	tmp.write('window.print();');
	tmp.write('window.close();');
	tmp.write('};');
	tmp.write('</script>');
	tmp.write('</head><body>');
	tmp.write(document.getElementById("content").innerHTML);
	tmp.write('</body></html>');
	tmp.close();
}
