/**
 * @author schmidt
 */

Print = {
	content:null,
	logo:null,
	title:null,
	
	init:function() {
		this.content = $('overview').innerHTML;
		this.logo = URL_MAP['INSTANCE_JS_PATH']+"/pix/logo.png";
		this.title = INSTANCE_SETTINGS.printTitle;
	},
	
	printOut:function() {
		this.init();
		var printWindow = window.open("/core/php/view/inc/print.php", "_blank", "width=800,height=600,left=100,top=200,scrollbars=yes");
		printWindow.focus();
	}
}

