function nyhedsmail()
{
	this.company_ary = new Array();
	
	this.activate_checkboxes = function(checking) {
		if(checking) {
			for(i=0; i<this.company_ary.length; i++) {
				document.getElementById(this.company_ary[i]).disabled=true;
			}
		} else {
			for(i=0; i<this.company_ary.length; i++) {
				document.getElementById(this.company_ary[i]).disabled=false;
			}
		}
	}
	
	this.save_profile = function() {
		document.getElementById('nyhedsmailForm').action="nyhedsmail.php?action=add_profile";
		document.getElementById('nyhedsmailForm').submit();
	}
	
	this.update_profile = function(id) {
		document.getElementById('nyhedsmailForm').action="nyhedsmail.php?action=update_profile&id="+id;
		document.getElementById('nyhedsmailForm').submit();
	}
	
	this.fetch_profile = function() {
		document.getElementById('nyhedsmailForm').action="nyhedsmail.php?action=fetch_profile";
		document.getElementById('nyhedsmailForm').submit();
	}
	this.del_profile = function() {
		if(confirm('Er du sikker på at du vil slette profilen, det kan IKKE fortrydes?')) {
			document.getElementById('nyhedsmailForm').action="nyhedsmail.php?action=del_profile";
			document.getElementById('nyhedsmailForm').submit();
		}
	}
}
