<!-- start of JavaScript code, hide code for old browsers
// display a HTML page in a new window
// Usage: <A href="javascript:void(0)" onClick="fOpenHTML('fritz.htm', '310', '445')">my page</A>
// width and height ahould be about 20 bigger then the picture dimensions
function fOpenHTML(fname, width, height){
	newWindow = window.open("","targetName","toolbar=0,scrollbars=yes,resizable=yes,width="+width+",height="+height);
//	newWindow.document.write("<HTML><HEAD></HEAD>");
//	newWindow.document.write('<BODY onLoad="location.href='+"'"+fname+"'"+'">');
//	newWindow.document.write('</BODY></HTML>');
//	newWindow.document.close();
	newWindow.location.href = fname;
}
// -->

