﻿// JScript File

function printme(print_area)

{

//Creating new page

var pp = window.open();
pp.document.writeln('<HTML><HEAD><title>Print Report</title><style>td{font-size:10px; }</style>')
pp.document.writeln('<LINK href=../css/inner.css type="text/css" rel="stylesheet">')
pp.document.writeln('<LINK href=../css/Print.css type="text/css" rel="stylesheet" media="print">')
pp.document.writeln('<base target="_self"></HEAD>')
//Adding Body Tag
pp.document.writeln('<body MS_POSITIONING="GridLayout" bottomMargin="0"');
pp.document.writeln(' leftMargin="0" topMargin="0" rightMargin="0">');
//Adding form Tag
pp.document.writeln('<form method="post">');
pp.document.writeln('<TABLE width=100% border=0><TR><TD></TD></TR><TR><TD align=right>');
pp.document.writeln('<INPUT ID="PRINT" type="button" value="Print" ');
//pp.document.writeln('<img src="../images/inner_img/Print_Icon.gif" border="0"');
pp.document.writeln('onclick="javascript:location.reload(true);window.print();">');
pp.document.writeln('<INPUT ID="CLOSE" type="button" value="Close" onclick="window.close();">');
pp.document.writeln('</TD></TR><TR><TD></TD></TR></TABLE>');
pp.document.writeln(document.getElementById(print_area).innerHTML);
pp.document.writeln('</form></body></HTML>');

} 

 
function hideButtons4()
{
    document.getElementById('paging').style.display = 'none';
	document.getElementById('drawing').style.display = 'none';
	document.getElementById('print').style.display = 'none';
	document.getElementById('email').style.display = 'none';
	document.getElementById('pdf').style.display = 'none';
	
	printme('areaToprint');
    document.getElementById('paging').style.display = 'block';
	document.getElementById('drawing').style.display = 'block';
	document.getElementById('print').style.display = 'block';
	document.getElementById('email').style.display = 'block';
	document.getElementById('pdf').style.display = 'block';
}
function hideButtons3()
{
	document.getElementById('drawing').style.display = 'none';
	document.getElementById('print').style.display = 'none';
	//document.getElementById('email').style.display = 'none';
	document.getElementById('pdf').style.display = 'none';
	
	printme('areaToprint');

	document.getElementById('drawing').style.display = 'block';
	document.getElementById('print').style.display = 'block';
	//document.getElementById('email').style.display = 'block';
	document.getElementById('pdf').style.display = 'block';
}
function hideButtons2()
{
	document.getElementById('paging').style.display = 'none';
	document.getElementById('print').style.display = 'none';
	document.getElementById('email').style.display = 'none';
	document.getElementById('pdf').style.display = 'none';
	
	printme('areaToprint');

	document.getElementById('paging').style.display = 'block';
	document.getElementById('print').style.display = 'block';
	document.getElementById('email').style.display = 'block';
	document.getElementById('pdf').style.display = 'block';
}

