var newwin=null;

// javascript:imageWindow('images/xxx.jpg', '...', 'neu', 400, 320)
// javascript:imageWindow('images/xxx.jpg')
// ,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0
function imageWindow(iURL, title, winname, width, height, options) {
	if ((!title) || (title=='')) title = iURL; 
  if ((!winname) || (winname=='')) winname = neu;
  if ((!width) || (width=='')) width = 640;
  if ((!height) || (height=='')) height = 480;
  if ((!options) || (options=='')) options = '';
  
  newwin=window.open('',winname,'width=' + width + ',height=' + height + options);
	with(newwin.document) {
	  writeln('<HTML><HEAD><TITLE>' + title + '</TITLE>');
		writeln('</HEAD>');
		writeln('<BODY BGCOLOR="#cccccc" link="#000000" alink="#000000" vlink="#000000" text="#000000" leftmargin="10" topmargin="10" marginwidth="10" marginheight="10" onload="self.focus()">');
		writeln('<center>');
      
		writeln('<a href="javascript:self.close()"><img src="' + iURL + '" border="1"></a>');
		writeln('<br><font face="verdana,arial" size="1" color="#999999">[<a href="javascript:self.close()" style="color:#999999;">close window</a>]</font>');
	
		writeln('</center>');
    writeln('');
    writeln('</BODY>');
		writeln('</HTML>');
		close();
  }
}

//openWindow('xxx.html','name','width=700,height=600');
//toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0
function openWindow(URL, winname, options) {
 window.open(URL,winname,options);
}


function writeFooterLink() {
  /*
  document.writeln(location.href);
  document.writeln(window.name);
  document.writeln(history.length);
  */
  if (window.name == 'fotos') {
    document.writeln('<font face="verdana,arial" size="1" color="#999999">[<a href="javascript:self.close()" style="color:#999999;">close window</a>]');
  } else {
    document.writeln('<font face="verdana,arial" size="1" color="#999999">[<a href="javascript:history.back()" style="color:#999999;">back</a>] &nbsp; ');
    document.writeln('<font face="verdana,arial" size="1" color="#999999">[<a href="javascript:window.close()" style="color:#999999;">close window</a>] &nbsp; ');
    document.writeln('<font face="verdana,arial" size="1" color="#999999">[<a href="http://www.uwee.de" style="color:#999999;">uwee.de home</a>]');
  }
}
