<!--
	// Initialize status_text
	var status_text;
	var obj_count = 0;
	
	// Resize window to contents
	function resize_to_contents(image_width,image_height) {
		// Get new window width
		var width_new = image_width+55;
	
		// Get new window height
		var height_new = image_height+100;
		
		// Resize window
		window.resizeTo(width_new,height_new);
		
		// Move to 0,0
		window.moveTo(10,10);
	}

	// Status message for mouse-over
	function over(text) { status = text; }

	// Clear status message for mouse-out
	function out() { 
		if(status_text) { status = status_text; }
		else { status = ""; }
	}

	// Open new window, special dimensions
	function win(theURL,winName,features) {
  		fenster=null;

 		fenster=window.open(theURL,winName,features);
  
		if(fenster!=null) {
			if(fenster.opener==null) { fenster.opener==self; fenster.location.href=theURL; }
 		} 
	}
	
	// Open new document window
	function zoom(name) {
		// Open new window
		win("foto.php?" + name, "foto", "width=2,height=2,scrollbars=no");
	}
-->