function getElement(o) {
        return document.getElementById(o);
}


function printFriendly(o1) {
        mywindow = window.open('printFriendly.htm','bar','width=1000, height=700, scrollbars, resizable, status');

	var str = '';

	str = '<html>';
	str += '<head>';
	str += '<link rel="stylesheet" href="lib/css/global.css" type="text/css">';
	str += '<link rel="stylesheet" href="lib/css/print.css" type="text/css">';
	str += '</head>';
	str += '<body bgcolor="white">';
	str +=  getElement(o1).innerHTML;
	str += '</body>';
	str += '</html>';

	mywindow.document.open();
	mywindow.document.write(str);
	mywindow.document.close();
	mywindow.print();
	return false;
}

