function printFrame(frame) {
	var e = window.frames[frame!=null?frame:'print_frame'];
	if(e && e!=null) {
		e.focus();
		e.print();
	}
}
