function printWin(www) {
	win = open(www,'printWin','width=840,height=500,toolbar=yes,menubar=yes,scrollbars=yes,copyhistory=no,status=no,resizable=yes,location=no');
	posY = screen.availHeight;
	posX = screen.availWidth;
	win.moveTo((posX/2)-420,(posY/2)-250);
	win.focus();
}
function showContentScrollbar(){
	var el = document.getElementById('content');
	el.style.overflow = 'auto';
	el.style.padding = '10px';
	el.style.width = '730px';
	el.style.height = '339px';
}
function hideContentScrollbar(){
	var el = document.getElementById('content');
	el.style.overflow = 'hidden';
	el.style.padding = 0;
	el.style.margin = 0;
	el.style.width = '750px';
	el.style.height = '359px';
}