// show remote window
function popup(path,width,height)
{
	newWindow = window.open(path,"remote","width="+width+",height="+height+",scrollbars=1,menubar=0,location=0,resizeable=0,toolbar=0,screenx=100,left=100,top=100,screeny=100");
	if (newWindow.opener == null) newWindow.opener=top;
	newWindow.focus();
}
// hide email address
function writeMailAddress(user, domain, tld)
{ document.write(user + '@' + domain + '.' + tld); }
// hide email address link
function writeMailAddressLink(user, domain, tld)
{ document.write('<a href="mailto:'); writeMailAddress(user, domain, tld); document.write('">'); writeMailAddress(user, domain, tld); document.write('</a>'); }
// submitted
var formSubmitted=0;
function ControlDoubleClick()
{
	state = (formSubmitted==0);
	formSubmitted=1;
	return state;
}

