function restricted(new_loc) {
	var msg = "Restricted Access Page\n";
	msg += "----------------------\n";
	msg += "Access to this page requires a password.\n";
	msg += "Contact your sales representative before\n";
	msg += "proceeding. Do you want to proceed?\n";

	if(confirm(msg))
	{
		window.location.href = new_loc;
	}
}
