function switchpix(thing, otherthing ) {
		var other = document.getElementById( otherthing );
		other.src = thing.src 
		//echo( thing.src );
	}//~

	function bigpix( thing ) {
		//echo (thing.src );
		var pageName = thing.src;
		var winName = '_blank';
		var features = "directories=no"
			+ ", height=400"
			+ ", width=650"
			+ ", location=no,menubar=no,resizable=yes,scrollbars=auto,status=no"
		
		window.open( pageName, winName, features );
				
	}//~
	
	function bigpix2( thing ) {
		//echo (thing.src );
		var pageName = thing;
		var winName = '_blank';
		var features = "directories=no"
			+ ", height=400"
			+ ", width=650"
			+ ", location=no,menubar=no,resizable=yes,scrollbars=auto,status=no"
		
		window.open( pageName, winName, features );
				
	}//


	function echo() {
		var s = '';
		for( var i=0; i<arguments.length; i++ ) {
			if( s ) s += '\n';
			s += arguments[i];
		}
		confirm( s );
	}//~
