
function NeuesBild(urlHaupt, name, breite, hoehe) {

	MeinFenster = window.open(urlHaupt, name, "width="+breite+",height="+hoehe+",resizable=no,scrollbars=yes");
	MeinFenster.focus();
}

function NeuesFenster(urlHaupt, breite, hoehe) {

	MeinFenster = window.open(urlHaupt, "neuesFenster", "width="+breite+",height="+hoehe+",resizable=yes,scrollbars=yes");
	MeinFenster.focus();
}

function neuesContentFenster(contentUrl)
{
	contentFenster = window.open(contentUrl, "linkContent");
	contentFenster.focus();
}