function open_vbpopup(pagefile)
{
	open_vbpopup(pagefile,"VB");
}

function open_vbpopup(pagefile,title)
{
	def = "status=no,toolbar=no,scrollbars=yes,menubar=no,width=380,height=460";
	tempwindow = window.open(pagefile, title, def);		
	tempwindow.focus(); //Fokus auf Pop-Up setzen (c) Mag. Wunderer
}

function printrechts() {
window.parent.inhalt.focus();
window.print();
}