<!--

	function win(theURL,winName,features) { //v2.0
	  fenster=null;

	  fenster=window.open(theURL,winName,features);
  
	  if(fenster!=null) {
	  	if(fenster.opener==null) { fenster.opener==self; fenster.location.href=theURL; }
	  } 
	}

	// Resize window to contents
	function resize_to_contents(image_width,image_height) {
		// Get new window width
		var width_new = image_width+250;
	
		// Get new window height
		var height_new = image_height+115;
		
		// Resize window
		window.resizeTo(width_new,height_new);
		
		// Move to 0,0
		window.moveTo(10,10);
	}

	// Status over text
	function over(text) { status = text; }

	// Clear status text
	function out() { status = ""; }

	// Zoom image, open window
	function zoom(nr) {
		var url = "foto.php?file=" + nr;
	
		win(url, "foto", "width=10,height=10");
	}

// -->
