var adilTextSize = 100;
function adilTextInc(objid) {
	if (adilTextSize <=200)	adilTextSize += 20;
	document.getElementById(objid).style.fontSize = adilTextSize + '%';
}

function adilTextDec(objid) {
	if (adilTextSize >=80) adilTextSize -= 20;
        document.getElementById(objid).style.fontSize = adilTextSize + '%';
}

function adilTextPrint(objid) {
	var doc=window.open('','name','height=600,width=800');
	
	doc.document.write('<html><head><title>Print a page</title>');
	doc.document.write('</head><body>');

	doc.document.write(document.getElementById(objid).innerHTML);

	doc.document.write('<script type="text/javascript">');
	doc.document.write('document.getElementById(\'adilToolbar\').style.display=\'none\';');
	doc.document.write('</script>');
	
	doc.document.write('</body></html>');
	
	doc.document.close();
	doc.print();	


}
