
function showHelp()
{
	if(document.getElementById("helpDiv").style.display == 'inline')
	{
		document.getElementById("helpDiv").style.display = 'none';
	}
	else
	{
		document.getElementById("helpDiv").style.display = 'inline';
	}
}

function print_mail_to(mailto_name, mailto_domain, mailto_subject, mailto_body, mailto_style)
{
	document.write('<a href=\"mailto:');
	document.write(mailto_name+'@');
	document.write(mailto_domain+'?');
	document.write('Subject='+mailto_subject+'&amp;');
	document.write('body='+mailto_body+'\" onFocus=\"if(this.blur)this.blur()\" ');
	document.write(' class=\"'+mailto_style+'\">'+mailto_name);
	document.write('@'+mailto_domain);
	document.write('</a>');
}

function checkFields(lang)
{
	if(document.loginForm.pCode.value == '')
	{
		alert(lang);
		return false;
	}
	else
	{
		return true;
	}
}
