function getValue() {
	var a = document.getElementById("outer");
	a.innerHTML = '<html><link href="<?php echo base_url()?>assets/css/print.css" media="print" rel="stylesheet"/><body><div id="outer">'+a.innerHTML+'</div></body></html>';
	var myWin = window.open('',"myWin","menubar,scrollbars,left=30px,top=40px,height=400px,width=600px");
	
	myWin.document.write(a.innerHTML);
}
