
function on_load(i)
	{
	document.forms['searchform'].elements['q'].focus();
	document.forms['searchform'].elements['q'].value = document.forms['searchform'].elements['q'].value;
	set_sound(i);
	}


function set_sound(i)
	{
	document.getElementById('bg_sound').src		  = (i==1?bg_sound_src:'inc/no-sound.mid');
	document.getElementById('save_var').src       = 'http://e-pla.net/save_var.gif.php?sound='+i;
	document.getElementById('sound'   ).innerHTML = '<a href="#" onclick="set_sound('+((i==1)?0:1)+'); return false;">'+((i==1)?'No sound':'Sound')+'<\/a>';
	}


function no_dotted_border()
	{
	if (document.all)
		{
		for (var a in document.links)
			document.links[a].onfocus=document.links[a].blur;
		}
	}


document.onmousedown = no_dotted_border;


