function showPresentations() {
var content =
'Acquiring and keeping top-notch employees
\n'
+ 'We all want our employees to be top-notch. But getting them and\n'
+ 'then keeping them can be a challenge. Here are some tips on how to\n'
+ 'go about it.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'How to get two more hours out of every day
\n'
+ 'There always seems to be more things to do than there is time to them\n'
+ 'in. Here are some ideas that will help make you work smarter and not harder.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'How to make the right business decisions with company money
\n'
+ 'The most crucial decisions that a CEO makes are to decide on what to\n'
+ 'spend corporate liquid assets. There are no cook book rules for doing this\n'
+ 'of course, but here are some things to think about when making those decisions.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'Process Mining
\n'
+ 'Improving our business processes result in lower operating costs and an\n'
+ 'increase in the bottom line. Traditionally doing this required the hiring of\n'
+ 'expensive consultant and substantial disruption of on-going operations. But\n'
+ 'a new technique called process mining holds out the hope that both the time\n'
+ 'and effort involved can be substantially reduced.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'Excel Tips
\n'
+ 'Excel can do many things besides just add up columns of numbers. Here are some\n'
+ 'tips that can come in handy.
\n'
+ ' \n'
+ '<Read more>\n';
showContentTitle("Presentations");
document.getElementById("contentPageNav").innerHTML='1 of 2';
document.getElementById("contentPageNext").onclick = showPresentations1;
document.getElementById("contentPagePrev").style.visibility="hidden";
document.getElementById("contentPageNext").style.visibility="visible";
document.getElementById("contentPageNav").style.visibility="visible";
document.getElementById("contentBody").innerHTML = content;
}
function showPresentations1() {
var content =
'Workflow with Outlook
\n'
+ 'Workflow software can help bring order to a chaos of tasks to perform. But\n'
+ 'such programs can be costly. Here is how you can use Outlook to handle most\n'
+ 'of what you would need from such a program.
\n'
+ ' \n'
+ '<Read more>\n'
+ 'Intercalate
\n'
+ '
'
+ 'Intercalate is a template-based modeling tool that\n'
+ 'turns a single high level description of your data into many concrete implementations\n'
+ 'you need for real software. It creates Java source, SQL, tag files, html\n'
+ 'and virtually everything else you need to produce applications.
\n'
+ ' \n'
+ '<Read more>\n'
+ 'Intercalate for J2EE
\n'
+ '
'
+ 'The Sun J2EE specification has incredible flexibility. The cost of that flexibility \n'
+ 'is a high entry barrier -- even the most trivial J2EE applications require a lot \n'
+ 'of custom developed software to handle even the simplest tasks. Itercalate can\n'
+ 'reduce this effort significantly.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'Java Management Extensions (JMX)
\n'
+ 'JMX is an easy to use Java entension that standardizes and makes easy the setting,\n'
+ 'monitoring, and control of Java based applications.
\n'
+ ' \n'
+ '<Read more>\n'
+ '
'
+ 'Implementing a BEA Workshop 8.1 Solution, Lessons Learned
\n'
+ 'BEA Workshop provides a powerful framework for performing integrations.\n'
+ 'But using it is not simply a matter of clicking Next on wizard pages.
\n'
+ ' \n'
+ '<Read more>\n';
showContentTitle("Presentations");
document.getElementById("contentPageNav").innerHTML='2 of 2';
document.getElementById("contentPagePrev").onclick = showPresentations;
document.getElementById("contentPagePrev").style.visibility="visible";
document.getElementById("contentPageNext").style.visibility="hidden";
document.getElementById("contentPageNav").style.visibility="visible";
document.getElementById("contentBody").innerHTML = content;
}