function other_captcha ()
{
	var e = document.getElementById ('captcha_img');
	var s = e.src.replace (/\?ts=\d+/, '');
	e.src = s + '?ts=' + new Date ().getTime ();
}

function populate_industries (from)
{
	document.getElementById ('ind').innerHTML = document.getElementById (from).innerHTML;
}

function tabswitch (id, idx)
{
	$ ('#' + id + ' .tabs li').removeClass ('current').eq (idx).addClass ('current');
	$ ('#' + id + ' .tab').addClass ('inactive').eq (idx).removeClass ('inactive');
}