function newWindow(file, window) {
	msgWindow=open(file, window, 'resizable=no,width=400,height=500');
	if (msgWindow.opener == null) msgWindow.opener = self;
}

function openwin(url, name, specs) {
	var popup = window.open(url, name, specs);
}

function confirmcancel() {
	var msg="Warning changes to this entry will not be saved. Discard changes?";

	var agree = confirm(msg)
	if (agree) {
		location = "post.php";
	}
}

function confirmremove(id) {
	var msg="You are removing this user.  Are you sure?";

	var agree = confirm(msg)
	if (agree) {
		location = "members.php?page=form&action=delete&id="+id+"";
	}
}

function confirmdel(url) {
	var msg="Warning: Are you sure want to delete?";

	var agree = confirm(msg)
	if (agree) {
		location = url;
	}
}

function roll(img_name, img_src) {
	document[img_name].src = img_src;
}

function confirmgen(url, message) {
	var msg=message;

	var agree = confirm(msg)
	if (agree) {
		location = url;
	}
}

function confirmaction(url, message) {
	var msg=message;

	var agree = confirm(msg)
	if (agree) {
		location = url;
	}
}
