// frame aktualisieren
function changef (URI, Framename) {
  parent[Framename].location.href = URI;
}

// Fotogalerie
function showImg(img, width, height) {
	mf=window.open(img, 'myPictureViewer', 'toolbar=no, directories=no, location=no, status=no, menubar=yes, resizable=yes, scrollbars=no, width=width, height=height');
	mf.resizeTo(width+50, height+120);
	mf.focus(); 
	return false;
}