function openWindow(url)
				{ 
				popupWin= window.open(url, '',"width=700, innerwidth=600, innerheight=500, height=500, status=1, scrollbars=yes,resizable=yes, toolbar=no");
				popupWin.focus();
				}
			
			function openWindow2(filename, w,h)
				{ window.open(filename, "_blank", "Width=" + w + ",Height=" + h + ",innerHeight=" + h + ",innerWidth=" + w + ",scrollbars=no");
			}
		
			function openWindow3(theURL,winName,features) { 
				  window.open(theURL,winName,features);
			}
			
			function submitForm(theform, theboxaction, theaction, variableName, confirmMessage, urlExtension){
				
				if (confirmMessage != ''){
					if (!(confirm(confirmMessage))){
						return;
					}
				}
				
				theform.boxaction.value = theboxaction;
				theform.action = theaction;
				
				//theform.submit();
				//alert('Message for Kimberly DEBUG- changing the location of your window to ' + theaction + '?boxaction=' + theboxaction + '&' + variableName + '=' + getCheckedRadio(theform, variableName) + urlExtension);
				window.location=theaction + '?boxaction=' + theboxaction + '&' + variableName + '=' + getCheckedRadio(theform, variableName) + urlExtension;
				
				
				return true;
			}
			
			
			function getCheckedRadio(theformobj, radioname){
				tmparray = theformobj.elements[radioname];
				if (!(tmparray.length)){
					return tmparray.value;
				}
				
				for (i=0;i < tmparray.length; i++){
			if (tmparray[i].checked){
						
						return (tmparray[i].value);
					}
				}
			}
			
			
			
			
	
			window.status = "Build HTML email with ease! Manage and Survey subscribers. Collaborate! Inform! Interact! Sell!";