
function swapFields()
{
	document.getElementById('passPlaceholder').className='hideElement';
	document.getElementById('password').className='showElement';
	document.getElementById('password').focus();
}

function openWin(link)
{
	window.open(link, 'Window', 'width=840, height=690, top=20, left=20, resizable=yes, status=yes')
	return false;
}

