
	var el;
	
	if ( el = $('f_file') )
	{
		var elButton, elForm;
		
		if ( elForm = $('uploadform') )
			el.onchange = function() { initProgressMeter( progressBarURL, progressBarUUID ); elForm.submit(); };
		
		if ( elButton = $('ubutton') )
		{
			el.onmouseover	= function() { elButton.className = 'over'; };
			el.onmouseout	= function() { elButton.className = ''; };
		}
	}

	if ( el = $('f_large') )
		el.onclick = thumb;
	
	if ( el = $('f_crop') )
		el.onclick = thumb;
	
	if ( el = $('imgchk'))
		el.onclick = withimg;

	if ( el = $('purge'))
		el.onclick = purge;
	
	thumb();
	withimg();
	
	var a = $('codes', 'A');
	if ( a )
		for ( var i=0; i < a.length; i++ )
			a[i].onclick = function ( e ) { tab ( e ); return false; };
	
	a = $('codes', 'DIV');
	if ( a )
		for ( var i = 0; i < a.length; i++ )
			a[i].onclick = seltext;
	
	var IE = '\v' == 'v';
	if ( IE && ( el = $('mailit' ) ) )
		el.onclick = mailie;

	if ( IE && ( el = $('search' ) ) )
		el.onclick = mailie;
	
	if ( IE && ( el = $('langsel' ) ) )
		el.onclick = mailie;
	