function popupForm(n) {
	var w = 350;
	var h = 450;
	if(n == 2) {
	    h = 500;
	}
	
	var params  = 'width='+w;
	params += ', height='+h;
	// params = 'resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=' + w + ',height=' + h + ',status';

	var newwin = window.open("form/"+n+".asp",'ooneform'+n, params);
	
	if (window.focus) {
		newwin.focus()
	}
}
