/* ----------------------------------------------------------------------------
*  File: 	bildarchiv.js	
*  Projekt: SEW-EURODRIVE GmbH & Co KG / Pressebereich
*  Author: 	Dirk Schröer / Edoras / www.edoras.de
*  Date: 	2004-09-24
* ----------------------------------------------------------------------------
*  Purpose:	functions for image gallary
*  History:	
* ----------------------------------------------------------------------------
*/

		


  // open copyright page	
  function openCopyright()
  {
	cr = window.open("copyright.html", "cr", "width=500,height=800,left=50,top=50,location=no,menuebar=no,resizable=no,scrollbars=yes");
	cr.focus();
  }			
	// open detail image page
  function openDetail(s_img)
  {
	detail = window.open("bildarchiv_detail.php5?img="+s_img+"", "detail", "width=780,height=520,left=50,top=50,location=no,menuebar=no,resizable=yes");
	detail.focus();
  }			

