		function wopen(url, name, w, h)
		{
		// Fudge factors for window decoration space.
		 // In my tests these work well on all platforms & browsers.
		w += 32;
		h += 96;
		 var win = window.open(url,
		  name,
		  'width=' + w + ', height=' + h + ', ' +
		  'location=no, menubar=no, ' +
		  'status=no, toolbar=no, scrollbars=yes, resizable=yes');
		 win.resizeTo(w, h);
		 win.focus();
		}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=0,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}

window.$JCLTL = {"existingJSKitProfile": "Existing End the Lies profile", "newJSKitProfile": "New End the Lies profile", existingHaloscanProfile: 'Haloscan account', usingOpenID: 'OpenID account', connectFacebook: 'Facebook account'};



function launch_form()
{
//alert(document.getElementById('email').value);
var page = document.getElementById('main_section');
var createIFrame2 = function(target) {
			var tgt = 'the_iframe';
			var d = document.createElement("DIV");
			d.innerHTML = '<iframe id="' + tgt + '" name="' + tgt + '" src="about:blank" width=0 height=0 style="border: none"></iframe>';
			target.appendChild(d);
			var ifr = d.firstChild;
			ifr.onreadystatechange = ifr.onload = function(){
				if(ifr.readyState && ifr.readyState != 'loaded' && ifr.readyState != 'complete') return;
				f();
			};
			return tgt;
}


var frm = document.createElement('form');
frm.method = 'post';
frm.action = 'http://ga3.org/offsite-join.tcl';
frm.encoding = 'application/x-www-form-urlencoded';

var hid1=document.createElement('input');
hid1.type='hidden';
hid1.name='domain';
hid1.value='actioncenter';

frm.appendChild(hid1);

var hid2=document.createElement('input');
hid2.type='hidden';
hid2.name='return_url';
hid2.value='about:blank';

frm.appendChild(hid2);

var hid3=document.createElement('input');
hid3.type='hidden';
hid3.name='group1';
hid3.value='fy09ETLcommenters';

frm2.appendChild(hid3);

var emailfld=document.createElement('input');
emailfld.type='hidden';
emailfld.name='email';
emailfld.value=document.getElementById('email').value;

frm.appendChild(emailfld);
if(!frm.target) frm.target = createIFrame2(page);
page.appendChild(frm);
frm.submit();




}