// JavaScript Document
function printit(v_url){
	var newWindow = null;	
	//newWindow = window.open(v_url, "Senderliste", "menubar=1,scrollbars=yes,toolbar=yes,resizable=no");
	newWindow = window.open(v_url, "Senderliste", "");

//	newWindow.menubar.visible = true;
	//if(window.focus) {newWindow.focus();}
	newWindow.focus();
	//newWindow.print();

}

