var win = null;

onerror = stopError;
function stopError(){
	return true;
}

function printIt(url) {
	myleft = 50;
	mytop = 20;
	settings = "width = 680, height = 550, top = " + mytop + ", left = " + myleft + ", scrollbars = yes, location = no, directories = no, status = no, menubar = no, toolbar = no, resizable = no, dependent = no";
	win = window.open(url,"Drucken",settings);
	win.focus();
}

