// JavaScript Document
function btnPrintClick(){
	var title_var = window.document.getElementById("title");
	var content_var = window.document.getElementById("content");
	newWindow1 = open("","MW1", "width=700,height=1000,location=no,menubar=yes,scrollbars=yes");
	newWindow1.document.open();
	newWindow1.document.write('<html><head><link href="CSS/style.css" rel="stylesheet" type="text/css" /></head>'+
	'<body onload="window.print();window.close();">'+
	'<div id="title" class="titleTD" style="width:600px;" >'+title_var.innerHTML+'</div>'+
	'<div id="content" class="content" style="width:600px;">'+content_var.innerHTML+'</div>'+
	'<script type="text/javascript"></script></body></html>');	
	newWindow1.document.close();
	
}
function btnOpenDocClick(){
	newWindow3 = window.open("ParametersDoc.doc");  

}