function printout() {
	var ids = new Array('header','topsearchArea','LeftArea','PrArea220','footer','grobalFooter','printlogo','printcorplogo');
	for (var i = 0; i < ids.length; i++) {
		var id = getid(ids[i]);
		if (id) id.style.display = (id.style.diplay == 'none') ? 'block' : 'none';
	}
	window.print();
	return false;
}
function getid(id) {
	if (document.all) {
		return document.all(id);
	} else if (document.getElementById) {
		return document.getElementById(id);
	} else if (document.layers) {
		return document.layers[id];
	}
	return;
}
