/* Javascript fuer Objekt des Monats */

function openHiRes(link,breite,hoehe) {
	var large, props;
	var x = 45;
	if (breite > (screen.availWidth - x)) breite = screen.availWidth - x;
	if (hoehe > (screen.availHeight - x)) hoehe = screen.availHeight - x;
	props = 'left=1,top=1,width=' + breite + ',height=' + hoehe + ',location=no,menubar=no,toolbars=no,status=no,scrollbars=yes,resizable=yes';
	large = window.open(link,'largewindow',props);
	large.focus();
	// large.alert(props);
}